@@ -476,7 +476,7 @@ by the [=underlying source=] but not yet read by any consumer.
476
476
The Web IDL definition for the {{ReadableStream}} class is given as follows:
477
477
478
478
<xmp class="idl">
479
- [Exposed=(Window,Worker,Worklet) , Transferable]
479
+ [Exposed=* , Transferable]
480
480
interface ReadableStream {
481
481
constructor(optional object underlyingSource, optional QueuingStrategy strategy = {});
482
482
@@ -1155,7 +1155,7 @@ The {{ReadableStreamDefaultReader}} class represents a [=default reader=] design
1155
1155
The Web IDL definition for the {{ReadableStreamDefaultReader}} class is given as follows:
1156
1156
1157
1157
<xmp class="idl">
1158
- [Exposed=(Window,Worker,Worklet) ]
1158
+ [Exposed=* ]
1159
1159
interface ReadableStreamDefaultReader {
1160
1160
constructor(ReadableStream stream);
1161
1161
@@ -1298,7 +1298,7 @@ The {{ReadableStreamBYOBReader}} class represents a [=BYOB reader=] designed to
1298
1298
The Web IDL definition for the {{ReadableStreamBYOBReader}} class is given as follows:
1299
1299
1300
1300
<xmp class="idl">
1301
- [Exposed=(Window,Worker,Worklet) ]
1301
+ [Exposed=* ]
1302
1302
interface ReadableStreamBYOBReader {
1303
1303
constructor(ReadableStream stream);
1304
1304
@@ -1465,7 +1465,7 @@ not a [=readable byte stream=], the [=underlying source=] is given a correspondi
1465
1465
The Web IDL definition for the {{ReadableStreamDefaultController}} class is given as follows:
1466
1466
1467
1467
<xmp class="idl">
1468
- [Exposed=(Window,Worker,Worklet) ]
1468
+ [Exposed=* ]
1469
1469
interface ReadableStreamDefaultController {
1470
1470
readonly attribute unrestricted double? desiredSize;
1471
1471
@@ -1649,7 +1649,7 @@ instance to manipulate.
1649
1649
The Web IDL definition for the {{ReadableByteStreamController}} class is given as follows:
1650
1650
1651
1651
<xmp class="idl">
1652
- [Exposed=(Window,Worker,Worklet) ]
1652
+ [Exposed=* ]
1653
1653
interface ReadableByteStreamController {
1654
1654
readonly attribute ReadableStreamBYOBRequest? byobRequest;
1655
1655
readonly attribute unrestricted double? desiredSize;
@@ -1927,7 +1927,7 @@ The {{ReadableStreamBYOBRequest}} class represents a pull-into request in a
1927
1927
The Web IDL definition for the {{ReadableStreamBYOBRequest}} class is given as follows:
1928
1928
1929
1929
<xmp class="idl">
1930
- [Exposed=(Window,Worker,Worklet) ]
1930
+ [Exposed=* ]
1931
1931
interface ReadableStreamBYOBRequest {
1932
1932
readonly attribute ArrayBufferView? view;
1933
1933
@@ -3893,7 +3893,7 @@ The {{WritableStream}} represents a [=writable stream=].
3893
3893
The Web IDL definition for the {{WritableStream}} class is given as follows:
3894
3894
3895
3895
<xmp class="idl">
3896
- [Exposed=(Window,Worker,Worklet) , Transferable]
3896
+ [Exposed=* , Transferable]
3897
3897
interface WritableStream {
3898
3898
constructor(optional object underlyingSink, optional QueuingStrategy strategy = {});
3899
3899
@@ -4231,7 +4231,7 @@ vended by a {{WritableStream}} instance.
4231
4231
The Web IDL definition for the {{WritableStreamDefaultWriter}} class is given as follows:
4232
4232
4233
4233
<xmp class="idl">
4234
- [Exposed=(Window,Worker,Worklet) ]
4234
+ [Exposed=* ]
4235
4235
interface WritableStreamDefaultWriter {
4236
4236
constructor(WritableStream stream);
4237
4237
@@ -4421,7 +4421,7 @@ given a corresponding {{WritableStreamDefaultController}} instance to manipulate
4421
4421
The Web IDL definition for the {{WritableStreamDefaultController}} class is given as follows:
4422
4422
4423
4423
<xmp class="idl">
4424
- [Exposed=(Window,Worker,Worklet) ]
4424
+ [Exposed=* ]
4425
4425
interface WritableStreamDefaultController {
4426
4426
readonly attribute AbortSignal signal;
4427
4427
undefined error(optional any e);
@@ -5372,7 +5372,7 @@ The {{TransformStream}} class is a concrete instance of the general [=transform
5372
5372
The Web IDL definition for the {{TransformStream}} class is given as follows:
5373
5373
5374
5374
<xmp class="idl">
5375
- [Exposed=(Window,Worker,Worklet) , Transferable]
5375
+ [Exposed=* , Transferable]
5376
5376
interface TransformStream {
5377
5377
constructor(optional object transformer,
5378
5378
optional QueuingStrategy writableStrategy = {},
@@ -5638,7 +5638,7 @@ manipulate.
5638
5638
The Web IDL definition for the {{TransformStreamDefaultController}} class is given as follows:
5639
5639
5640
5640
<xmp class="idl">
5641
- [Exposed=(Window,Worker,Worklet) ]
5641
+ [Exposed=* ]
5642
5642
interface TransformStreamDefaultController {
5643
5643
readonly attribute unrestricted double? desiredSize;
5644
5644
@@ -6092,7 +6092,7 @@ streams=], as they always measure chunks in bytes. Attempting to construct a byt
6092
6092
The Web IDL definition for the {{ByteLengthQueuingStrategy}} class is given as follows:
6093
6093
6094
6094
<xmp class="idl">
6095
- [Exposed=(Window,Worker,Worklet) ]
6095
+ [Exposed=* ]
6096
6096
interface ByteLengthQueuingStrategy {
6097
6097
constructor(QueuingStrategyInit init);
6098
6098
@@ -6207,7 +6207,7 @@ high-water mark. As such, this strategy is also provided out of the box.
6207
6207
The Web IDL definition for the {{CountQueuingStrategy}} class is given as follows:
6208
6208
6209
6209
<xmp class="idl">
6210
- [Exposed=(Window,Worker,Worklet) ]
6210
+ [Exposed=* ]
6211
6211
interface CountQueuingStrategy {
6212
6212
constructor(QueuingStrategyInit init);
6213
6213
0 commit comments