@webref/idl 3.66.0 → 3.66.2
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/IndexedDB.idl +19 -4
- package/cookiestore.idl +0 -6
- package/crash-reporting.idl +4 -4
- package/css-typed-om.idl +2 -2
- package/element-timing.idl +1 -1
- package/fedcm.idl +3 -4
- package/fetch.idl +13 -0
- package/html.idl +329 -329
- package/largest-contentful-paint.idl +1 -0
- package/notifications.idl +3 -0
- package/package.json +1 -1
- package/privacy-preserving-attribution.idl +1 -1
- package/push-api.idl +5 -3
- package/webnn.idl +4 -0
- package/webrtc-stats.idl +1 -1
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface LargestContentfulPaint : PerformanceEntry {
|
|
8
8
|
readonly attribute DOMHighResTimeStamp loadTime;
|
|
9
|
+
readonly attribute DOMHighResTimeStamp renderTime;
|
|
9
10
|
readonly attribute unsigned long size;
|
|
10
11
|
readonly attribute DOMString id;
|
|
11
12
|
readonly attribute DOMString url;
|
package/notifications.idl
CHANGED
|
@@ -21,6 +21,7 @@ interface Notification : EventTarget {
|
|
|
21
21
|
readonly attribute NotificationDirection dir;
|
|
22
22
|
readonly attribute DOMString lang;
|
|
23
23
|
readonly attribute DOMString body;
|
|
24
|
+
readonly attribute USVString navigate;
|
|
24
25
|
readonly attribute DOMString tag;
|
|
25
26
|
readonly attribute USVString image;
|
|
26
27
|
readonly attribute USVString icon;
|
|
@@ -40,6 +41,7 @@ dictionary NotificationOptions {
|
|
|
40
41
|
NotificationDirection dir = "auto";
|
|
41
42
|
DOMString lang = "";
|
|
42
43
|
DOMString body = "";
|
|
44
|
+
USVString navigate;
|
|
43
45
|
DOMString tag = "";
|
|
44
46
|
USVString image;
|
|
45
47
|
USVString icon;
|
|
@@ -68,6 +70,7 @@ enum NotificationDirection {
|
|
|
68
70
|
dictionary NotificationAction {
|
|
69
71
|
required DOMString action;
|
|
70
72
|
required DOMString title;
|
|
73
|
+
USVString navigate;
|
|
71
74
|
USVString icon;
|
|
72
75
|
};
|
|
73
76
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Attribution Level 1 (https://w3c.github.io/
|
|
4
|
+
// Source: Attribution Level 1 (https://w3c.github.io/attribution/)
|
|
5
5
|
|
|
6
6
|
partial interface Navigator {
|
|
7
7
|
[SecureContext, SameObject] readonly attribute Attribution attribution;
|
package/push-api.idl
CHANGED
|
@@ -73,14 +73,16 @@ partial interface ServiceWorkerGlobalScope {
|
|
|
73
73
|
interface PushEvent : ExtendableEvent {
|
|
74
74
|
constructor(DOMString type, optional PushEventInit eventInitDict = {});
|
|
75
75
|
readonly attribute PushMessageData? data;
|
|
76
|
+
readonly attribute Notification? notification;
|
|
76
77
|
};
|
|
77
78
|
|
|
78
|
-
typedef (BufferSource or USVString) PushMessageDataInit;
|
|
79
|
-
|
|
80
79
|
dictionary PushEventInit : ExtendableEventInit {
|
|
81
|
-
PushMessageDataInit data;
|
|
80
|
+
PushMessageDataInit? data = null;
|
|
81
|
+
Notification? notification = null;
|
|
82
82
|
};
|
|
83
83
|
|
|
84
|
+
typedef (BufferSource or USVString) PushMessageDataInit;
|
|
85
|
+
|
|
84
86
|
[Exposed=ServiceWorker, SecureContext]
|
|
85
87
|
interface PushSubscriptionChangeEvent : ExtendableEvent {
|
|
86
88
|
constructor(DOMString type, optional PushSubscriptionChangeEventInit eventInitDict = {});
|
package/webnn.idl
CHANGED
|
@@ -369,6 +369,8 @@ partial interface MLGraphBuilder {
|
|
|
369
369
|
MLOperand logicalXor(MLOperand a,
|
|
370
370
|
MLOperand b,
|
|
371
371
|
optional MLOperatorOptions options = {});
|
|
372
|
+
MLOperand isNaN(MLOperand a, optional MLOperatorOptions options = {});
|
|
373
|
+
MLOperand isInfinite(MLOperand a, optional MLOperatorOptions options = {});
|
|
372
374
|
};
|
|
373
375
|
|
|
374
376
|
dictionary MLLogicalNotSupportLimits {
|
|
@@ -387,6 +389,8 @@ partial dictionary MLOpSupportLimits {
|
|
|
387
389
|
MLBinarySupportLimits logicalAnd;
|
|
388
390
|
MLBinarySupportLimits logicalOr;
|
|
389
391
|
MLBinarySupportLimits logicalXor;
|
|
392
|
+
MLLogicalNotSupportLimits isNaN;
|
|
393
|
+
MLLogicalNotSupportLimits isInfinite;
|
|
390
394
|
};
|
|
391
395
|
|
|
392
396
|
partial interface MLGraphBuilder {
|
package/webrtc-stats.idl
CHANGED
|
@@ -117,7 +117,6 @@ dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {
|
|
|
117
117
|
dictionary RTCSentRtpStreamStats : RTCRtpStreamStats {
|
|
118
118
|
unsigned long long packetsSent;
|
|
119
119
|
unsigned long long bytesSent;
|
|
120
|
-
unsigned long long packetsSentWithEct1;
|
|
121
120
|
};
|
|
122
121
|
|
|
123
122
|
dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
|
|
@@ -154,6 +153,7 @@ dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
|
|
|
154
153
|
boolean powerEfficientEncoder;
|
|
155
154
|
boolean active;
|
|
156
155
|
DOMString scalabilityMode;
|
|
156
|
+
unsigned long long packetsSentWithEct1;
|
|
157
157
|
};
|
|
158
158
|
|
|
159
159
|
enum RTCQualityLimitationReason {
|