@webref/idl 3.55.4 → 3.56.1
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/attribution-reporting-api.idl +1 -0
- package/fedcm.idl +14 -2
- package/fenced-frame.idl +1 -0
- package/html.idl +10 -2
- package/package.json +1 -1
- package/paint-timing.idl +7 -0
- package/shared-storage.idl +3 -3
- package/web-animations-2.idl +1 -1
- package/webauthn.idl +0 -1
- package/webgpu.idl +3 -1
- package/webrtc-stats.idl +3 -0
|
@@ -8,6 +8,7 @@ interface mixin HTMLAttributionSrcElementUtils {
|
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
HTMLAnchorElement includes HTMLAttributionSrcElementUtils;
|
|
11
|
+
HTMLAreaElement includes HTMLAttributionSrcElementUtils;
|
|
11
12
|
HTMLImageElement includes HTMLAttributionSrcElementUtils;
|
|
12
13
|
HTMLScriptElement includes HTMLAttributionSrcElementUtils;
|
|
13
14
|
|
package/fedcm.idl
CHANGED
|
@@ -29,9 +29,15 @@ enum IdentityCredentialRequestOptionsContext {
|
|
|
29
29
|
"continue"
|
|
30
30
|
};
|
|
31
31
|
|
|
32
|
+
enum IdentityCredentialRequestOptionsMode {
|
|
33
|
+
"active",
|
|
34
|
+
"passive"
|
|
35
|
+
};
|
|
36
|
+
|
|
32
37
|
dictionary IdentityCredentialRequestOptions {
|
|
33
38
|
required sequence<IdentityProviderRequestOptions> providers;
|
|
34
39
|
IdentityCredentialRequestOptionsContext context = "signin";
|
|
40
|
+
IdentityCredentialRequestOptionsMode mode = "passive";
|
|
35
41
|
};
|
|
36
42
|
|
|
37
43
|
dictionary IdentityProviderConfig {
|
|
@@ -85,8 +91,9 @@ dictionary IdentityProviderAccountList {
|
|
|
85
91
|
sequence<IdentityProviderAccount> accounts;
|
|
86
92
|
};
|
|
87
93
|
|
|
88
|
-
dictionary
|
|
89
|
-
|
|
94
|
+
dictionary IdentityAssertionResponse {
|
|
95
|
+
USVString token;
|
|
96
|
+
USVString continue_on;
|
|
90
97
|
};
|
|
91
98
|
|
|
92
99
|
dictionary IdentityProviderClientMetadata {
|
|
@@ -101,7 +108,12 @@ dictionary IdentityUserInfo {
|
|
|
101
108
|
USVString picture;
|
|
102
109
|
};
|
|
103
110
|
|
|
111
|
+
dictionary IdentityResolveOptions {
|
|
112
|
+
USVString accountId;
|
|
113
|
+
};
|
|
114
|
+
|
|
104
115
|
[Exposed=Window, SecureContext] interface IdentityProvider {
|
|
105
116
|
static undefined close();
|
|
117
|
+
static undefined resolve(DOMString token, optional IdentityResolveOptions options = {});
|
|
106
118
|
static Promise<sequence<IdentityUserInfo>> getUserInfo(IdentityProviderConfig config);
|
|
107
119
|
};
|
package/fenced-frame.idl
CHANGED
|
@@ -74,6 +74,7 @@ interface Fence {
|
|
|
74
74
|
undefined reportEvent(optional ReportEventType event = {});
|
|
75
75
|
undefined setReportEventDataForAutomaticBeacons(optional FenceEvent event = {});
|
|
76
76
|
sequence<FencedFrameConfig> getNestedConfigs();
|
|
77
|
+
Promise<undefined> disableUntrustedNetwork();
|
|
77
78
|
undefined notifyEvent(Event event);
|
|
78
79
|
};
|
|
79
80
|
|
package/html.idl
CHANGED
|
@@ -133,12 +133,20 @@ interface HTMLElement : Element {
|
|
|
133
133
|
ElementInternals attachInternals();
|
|
134
134
|
|
|
135
135
|
// The popover API
|
|
136
|
-
undefined showPopover();
|
|
136
|
+
undefined showPopover(optional ShowPopoverOptions options = {});
|
|
137
137
|
undefined hidePopover();
|
|
138
|
-
boolean togglePopover(optional boolean
|
|
138
|
+
boolean togglePopover(optional (TogglePopoverOptions or boolean) options = {});
|
|
139
139
|
[CEReactions] attribute DOMString? popover;
|
|
140
140
|
};
|
|
141
141
|
|
|
142
|
+
dictionary ShowPopoverOptions {
|
|
143
|
+
HTMLElement source;
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
dictionary TogglePopoverOptions : ShowPopoverOptions {
|
|
147
|
+
boolean force;
|
|
148
|
+
};
|
|
149
|
+
|
|
142
150
|
HTMLElement includes GlobalEventHandlers;
|
|
143
151
|
HTMLElement includes ElementContentEditable;
|
|
144
152
|
HTMLElement includes HTMLOrSVGElement;
|
package/package.json
CHANGED
package/paint-timing.idl
CHANGED
|
@@ -3,5 +3,12 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: Paint Timing (https://w3c.github.io/paint-timing/)
|
|
5
5
|
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface mixin PaintTimingMixin {
|
|
8
|
+
readonly attribute DOMHighResTimeStamp paintTime;
|
|
9
|
+
readonly attribute DOMHighResTimeStamp? presentationTime;
|
|
10
|
+
};
|
|
11
|
+
|
|
6
12
|
[Exposed=Window]
|
|
7
13
|
interface PerformancePaintTiming : PerformanceEntry {};
|
|
14
|
+
PerformancePaintTiming includes PaintTimingMixin;
|
package/shared-storage.idl
CHANGED
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
typedef (USVString or FencedFrameConfig) SharedStorageResponse;
|
|
7
7
|
|
|
8
|
-
enum SharedStorageDataOrigin { "context-origin", "script-origin" };
|
|
9
|
-
|
|
10
8
|
[Exposed=(Window)]
|
|
11
9
|
interface SharedStorageWorklet : Worklet {
|
|
12
10
|
Promise<SharedStorageResponse> selectURL(DOMString name,
|
|
@@ -25,6 +23,8 @@ interface SharedStorageWorkletGlobalScope : WorkletGlobalScope {
|
|
|
25
23
|
|
|
26
24
|
readonly attribute SharedStorage sharedStorage;
|
|
27
25
|
readonly attribute PrivateAggregation privateAggregation;
|
|
26
|
+
|
|
27
|
+
Promise<sequence<StorageInterestGroup>> interestGroups();
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
dictionary SharedStorageUrlWithMetadata {
|
|
@@ -93,7 +93,7 @@ dictionary SharedStorageRunOperationMethodOptions {
|
|
|
93
93
|
};
|
|
94
94
|
|
|
95
95
|
dictionary SharedStorageWorkletOptions : WorkletOptions {
|
|
96
|
-
|
|
96
|
+
USVString dataOrigin = "context-origin";
|
|
97
97
|
};
|
|
98
98
|
|
|
99
99
|
interface mixin HTMLSharedStorageWritableElementUtils {
|
package/web-animations-2.idl
CHANGED
|
@@ -14,7 +14,7 @@ partial interface AnimationTimeline {
|
|
|
14
14
|
partial interface Animation {
|
|
15
15
|
attribute CSSNumberish? startTime;
|
|
16
16
|
attribute CSSNumberish? currentTime;
|
|
17
|
-
readonly attribute double?
|
|
17
|
+
readonly attribute double? overallProgress;
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
[Exposed=Window]
|
package/webauthn.idl
CHANGED
package/webgpu.idl
CHANGED
|
@@ -78,9 +78,10 @@ interface GPU {
|
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
dictionary GPURequestAdapterOptions {
|
|
81
|
-
DOMString featureLevel;
|
|
81
|
+
DOMString featureLevel = "core";
|
|
82
82
|
GPUPowerPreference powerPreference;
|
|
83
83
|
boolean forceFallbackAdapter = false;
|
|
84
|
+
boolean xrCompatible = false;
|
|
84
85
|
};
|
|
85
86
|
|
|
86
87
|
enum GPUPowerPreference {
|
|
@@ -128,6 +129,7 @@ enum GPUFeatureName {
|
|
|
128
129
|
interface GPUDevice : EventTarget {
|
|
129
130
|
[SameObject] readonly attribute GPUSupportedFeatures features;
|
|
130
131
|
[SameObject] readonly attribute GPUSupportedLimits limits;
|
|
132
|
+
[SameObject] readonly attribute GPUAdapterInfo adapterInfo;
|
|
131
133
|
|
|
132
134
|
[SameObject] readonly attribute GPUQueue queue;
|
|
133
135
|
|
package/webrtc-stats.idl
CHANGED
|
@@ -96,6 +96,9 @@ dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
|
|
|
96
96
|
unsigned long long retransmittedBytesReceived;
|
|
97
97
|
unsigned long rtxSsrc;
|
|
98
98
|
unsigned long fecSsrc;
|
|
99
|
+
double totalCorruptionProbability;
|
|
100
|
+
double totalSquaredCorruptionProbability;
|
|
101
|
+
unsigned long long corruptionMeasurements;
|
|
99
102
|
};
|
|
100
103
|
|
|
101
104
|
dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {
|