From 63228ec0e4141717382a0d5188ebfb57d8a42ea8 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Tue, 27 Jul 2021 12:37:28 -0400 Subject: [PATCH] Manual spacing fixups --- source | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/source b/source index 432518b366c..a58d36bf7cd 100644 --- a/source +++ b/source @@ -98862,7 +98862,6 @@ interface WebSocket : EventTarget {
socket.send(data)
-

Transmits data using the WebSocket connection. data can be a string, a Blob, an ArrayBuffer, or an WebSocket : EventTarget {

socket.close([ code ] [, reason ])
-

Closes the WebSocket connection, optionally using code as the WebSocket connection close code and @@ -98879,21 +98877,18 @@ interface WebSocket : EventTarget {

socket.url
-

Returns the URL that was used to establish the WebSocket connection.

socket.readyState
-

Returns the state of the WebSocket object's connection. It can have the values described below.

socket.bufferedAmount
-

Returns the number of bytes of application data (UTF-8 text and binary data) that have been queued using send() but not yet been transmitted to the @@ -98905,25 +98900,21 @@ interface WebSocket : EventTarget {

socket.extensions
-

Returns the extensions selected by the server, if any.

socket.protocol
- -
-

Returns the subprotocol selected by the server, if any. It can be used in conjunction with - the array form of the constructor's second argument to perform subprotocol negotiation.

-
+

Returns the subprotocol selected by the server, if any. It can be used in conjunction with + the array form of the constructor's second argument to perform subprotocol negotiation.

socket.binaryType [ = value ]
-

Returns a string that indicates how binary data from the WebSocket object is exposed to scripts:

-
"blob"
-

Binary data is returned in Blob form.

+
"blob"
+

Binary data is returned in Blob form.

+
"arraybuffer"

Binary data is returned in ArrayBuffer form.