@webref/idl 3.22.1 → 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/event-timing.idl +1 -6
- package/html.idl +1 -1
- package/package.json +1 -1
- package/picture-in-picture.idl +0 -1
- package/webnn.idl +1 -1
- package/webrtc-stats.idl +1 -0
- package/webtransport.idl +2 -2
package/event-timing.idl
CHANGED
|
@@ -18,15 +18,10 @@ interface EventCounts {
|
|
|
18
18
|
readonly maplike<DOMString, unsigned long long>;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
[Exposed=Window]
|
|
22
|
-
interface InteractionCounts {
|
|
23
|
-
readonly maplike<DOMString, unsigned long long>;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
21
|
[Exposed=Window]
|
|
27
22
|
partial interface Performance {
|
|
28
23
|
[SameObject] readonly attribute EventCounts eventCounts;
|
|
29
|
-
|
|
24
|
+
readonly attribute unsigned long long interactionCount;
|
|
30
25
|
};
|
|
31
26
|
|
|
32
27
|
partial dictionary PerformanceObserverInit {
|
package/html.idl
CHANGED
|
@@ -886,7 +886,7 @@ interface HTMLInputElement : HTMLElement {
|
|
|
886
886
|
[CEReactions] attribute DOMString formTarget;
|
|
887
887
|
[CEReactions] attribute unsigned long height;
|
|
888
888
|
attribute boolean indeterminate;
|
|
889
|
-
readonly attribute
|
|
889
|
+
readonly attribute HTMLDataListElement? list;
|
|
890
890
|
[CEReactions] attribute DOMString max;
|
|
891
891
|
[CEReactions] attribute long maxLength;
|
|
892
892
|
[CEReactions] attribute DOMString min;
|
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/webrtc-stats.idl
CHANGED
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
|
};
|