@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.22.2",
4
+ "version": "3.22.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -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> newShape);
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
  };