@webref/idl 3.22.2 → 3.22.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/picture-in-picture.idl +0 -1
- package/webnn.idl +1 -1
- package/webtransport.idl +2 -2
package/package.json
CHANGED
package/picture-in-picture.idl
CHANGED
|
@@ -9,7 +9,6 @@ partial interface HTMLVideoElement {
|
|
|
9
9
|
attribute EventHandler onenterpictureinpicture;
|
|
10
10
|
attribute EventHandler onleavepictureinpicture;
|
|
11
11
|
|
|
12
|
-
[CEReactions] attribute boolean autoPictureInPicture;
|
|
13
12
|
[CEReactions] attribute boolean disablePictureInPicture;
|
|
14
13
|
};
|
|
15
14
|
|
package/webnn.idl
CHANGED
|
@@ -411,7 +411,7 @@ partial interface MLGraphBuilder {
|
|
|
411
411
|
};
|
|
412
412
|
|
|
413
413
|
partial interface MLGraphBuilder {
|
|
414
|
-
MLOperand reshape(MLOperand input, sequence<long
|
|
414
|
+
MLOperand reshape(MLOperand input, sequence<unsigned long?> newShape);
|
|
415
415
|
};
|
|
416
416
|
|
|
417
417
|
partial interface MLGraphBuilder {
|
package/webtransport.idl
CHANGED
|
@@ -88,7 +88,7 @@ dictionary WebTransportDatagramStats {
|
|
|
88
88
|
unsigned long long lostOutgoing;
|
|
89
89
|
};
|
|
90
90
|
|
|
91
|
-
[Exposed=(Window,Worker), SecureContext]
|
|
91
|
+
[Exposed=(Window,Worker), SecureContext, Transferable]
|
|
92
92
|
interface WebTransportSendStream : WritableStream {
|
|
93
93
|
Promise<WebTransportSendStreamStats> getStats();
|
|
94
94
|
};
|
|
@@ -100,7 +100,7 @@ dictionary WebTransportSendStreamStats {
|
|
|
100
100
|
unsigned long long bytesAcknowledged;
|
|
101
101
|
};
|
|
102
102
|
|
|
103
|
-
[Exposed=(Window,Worker), SecureContext]
|
|
103
|
+
[Exposed=(Window,Worker), SecureContext, Transferable]
|
|
104
104
|
interface WebTransportReceiveStream : ReadableStream {
|
|
105
105
|
Promise<WebTransportReceiveStreamStats> getStats();
|
|
106
106
|
};
|