Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ by the [=underlying source=] but not yet read by any consumer.
The Web IDL definition for the {{ReadableStream}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet), Transferable]
[Exposed=*, Transferable]
interface ReadableStream {
constructor(optional object underlyingSource, optional QueuingStrategy strategy = {});

Expand Down Expand Up @@ -1140,7 +1140,7 @@ The {{ReadableStreamDefaultReader}} class represents a [=default reader=] design
The Web IDL definition for the {{ReadableStreamDefaultReader}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ReadableStreamDefaultReader {
constructor(ReadableStream stream);

Expand Down Expand Up @@ -1284,7 +1284,7 @@ The {{ReadableStreamBYOBReader}} class represents a [=BYOB reader=] designed to
The Web IDL definition for the {{ReadableStreamBYOBReader}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ReadableStreamBYOBReader {
constructor(ReadableStream stream);

Expand Down Expand Up @@ -1452,7 +1452,7 @@ not a [=readable byte stream=], the [=underlying source=] is given a correspondi
The Web IDL definition for the {{ReadableStreamDefaultController}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ReadableStreamDefaultController {
readonly attribute unrestricted double? desiredSize;

Expand Down Expand Up @@ -1628,7 +1628,7 @@ instance to manipulate.
The Web IDL definition for the {{ReadableByteStreamController}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ReadableByteStreamController {
readonly attribute ReadableStreamBYOBRequest? byobRequest;
readonly attribute unrestricted double? desiredSize;
Expand Down Expand Up @@ -1902,7 +1902,7 @@ The {{ReadableStreamBYOBRequest}} class represents a pull-into request in a
The Web IDL definition for the {{ReadableStreamBYOBRequest}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ReadableStreamBYOBRequest {
readonly attribute ArrayBufferView? view;

Expand Down Expand Up @@ -3758,7 +3758,7 @@ The {{WritableStream}} represents a [=writable stream=].
The Web IDL definition for the {{WritableStream}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet), Transferable]
[Exposed=*, Transferable]
interface WritableStream {
constructor(optional object underlyingSink, optional QueuingStrategy strategy = {});

Expand Down Expand Up @@ -4096,7 +4096,7 @@ vended by a {{WritableStream}} instance.
The Web IDL definition for the {{WritableStreamDefaultWriter}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface WritableStreamDefaultWriter {
constructor(WritableStream stream);

Expand Down Expand Up @@ -4286,7 +4286,7 @@ given a corresponding {{WritableStreamDefaultController}} instance to manipulate
The Web IDL definition for the {{WritableStreamDefaultController}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface WritableStreamDefaultController {
readonly attribute any abortReason;
readonly attribute AbortSignal signal;
Expand Down Expand Up @@ -5251,7 +5251,7 @@ The {{TransformStream}} class is a concrete instance of the general [=transform
The Web IDL definition for the {{TransformStream}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet), Transferable]
[Exposed=*, Transferable]
interface TransformStream {
constructor(optional object transformer,
optional QueuingStrategy writableStrategy = {},
Expand Down Expand Up @@ -5517,7 +5517,7 @@ manipulate.
The Web IDL definition for the {{TransformStreamDefaultController}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface TransformStreamDefaultController {
readonly attribute unrestricted double? desiredSize;

Expand Down Expand Up @@ -5971,7 +5971,7 @@ streams=], as they always measure chunks in bytes. Attempting to construct a byt
The Web IDL definition for the {{ByteLengthQueuingStrategy}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface ByteLengthQueuingStrategy {
constructor(QueuingStrategyInit init);

Expand Down Expand Up @@ -6086,7 +6086,7 @@ high-water mark. As such, this strategy is also provided out of the box.
The Web IDL definition for the {{CountQueuingStrategy}} class is given as follows:

<xmp class="idl">
[Exposed=(Window,Worker,Worklet)]
[Exposed=*]
interface CountQueuingStrategy {
constructor(QueuingStrategyInit init);

Expand Down