@webref/idl 3.52.1 → 3.53.0

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.
@@ -7,4 +7,5 @@
7
7
  interface CrashReportBody : ReportBody {
8
8
  [Default] object toJSON();
9
9
  readonly attribute DOMString? reason;
10
+ readonly attribute DOMString? stack;
10
11
  };
@@ -3,8 +3,6 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: CSS Font Loading Module Level 3 (https://drafts.csswg.org/css-font-loading-3/)
5
5
 
6
- typedef (ArrayBuffer or ArrayBufferView) BinaryData;
7
-
8
6
  dictionary FontFaceDescriptors {
9
7
  CSSOMString style = "normal";
10
8
  CSSOMString weight = "normal";
@@ -22,7 +20,7 @@ enum FontFaceLoadStatus { "unloaded", "loading", "loaded", "error" };
22
20
 
23
21
  [Exposed=(Window,Worker)]
24
22
  interface FontFace {
25
- constructor(CSSOMString family, (CSSOMString or BinaryData) source,
23
+ constructor(CSSOMString family, (CSSOMString or BufferSource) source,
26
24
  optional FontFaceDescriptors descriptors = {});
27
25
  attribute CSSOMString family;
28
26
  attribute CSSOMString style;
@@ -3,11 +3,9 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: CSS View Transitions Module Level 2 (https://drafts.csswg.org/css-view-transitions-2/)
5
5
 
6
- enum ViewTransitionNavigation { "auto", "none" };
7
-
8
6
  [Exposed=Window]
9
7
  interface CSSViewTransitionRule : CSSRule {
10
- readonly attribute ViewTransitionNavigation navigation;
8
+ readonly attribute CSSOMString navigation;
11
9
  [SameObject] readonly attribute FrozenArray<CSSOMString> types;
12
10
  };
13
11
 
@@ -22,11 +20,10 @@ partial interface ViewTransition {
22
20
  };
23
21
 
24
22
  dictionary StartViewTransitionOptions {
25
- UpdateCallback? update = null;
23
+ ViewTransitionUpdateCallback? update = null;
26
24
  sequence<DOMString>? types = null;
27
25
  };
28
26
 
29
27
  partial interface Document {
30
-
31
- ViewTransition startViewTransition(optional (UpdateCallback or StartViewTransitionOptions) callbackOptions = {});
28
+ ViewTransition startViewTransition(optional (ViewTransitionUpdateCallback or StartViewTransitionOptions) callbackOptions = {});
32
29
  };
@@ -3,7 +3,7 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: CSS View Transitions Module Level 1 (https://drafts.csswg.org/css-view-transitions-1/)
5
5
 
6
- callback UpdateCallback = Promise<any> ();
6
+ callback ViewTransitionUpdateCallback = Promise<any> ();
7
7
 
8
8
  [Exposed=Window]
9
9
  interface ViewTransition {
@@ -0,0 +1,13 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: CSS Viewport Module Level 1 (https://drafts.csswg.org/css-viewport/)
5
+
6
+ partial interface Window {
7
+ [SameObject, Replaceable] readonly attribute Viewport viewport;
8
+ };
9
+
10
+ [Exposed=Window]
11
+ interface Viewport {
12
+ readonly attribute FrozenArray<DOMRect>? segments;
13
+ };
@@ -12,10 +12,10 @@ partial dictionary CredentialRequestOptions {
12
12
  };
13
13
 
14
14
  dictionary DigitalCredentialRequestOptions {
15
- sequence<IdentityRequestProvider> providers;
15
+ sequence<DigitalCredentialsProvider> providers;
16
16
  };
17
17
 
18
- dictionary IdentityRequestProvider {
18
+ dictionary DigitalCredentialsProvider {
19
19
  required DOMString protocol;
20
20
  required object request;
21
21
  };
@@ -23,5 +23,5 @@ dictionary IdentityRequestProvider {
23
23
  [Exposed=Window, SecureContext]
24
24
  interface DigitalCredential : Credential {
25
25
  readonly attribute DOMString protocol;
26
- readonly attribute any data;
26
+ readonly attribute object data;
27
27
  };
@@ -21,6 +21,7 @@ dictionary DocumentPictureInPictureOptions {
21
21
  [EnforceRange] unsigned long long width = 0;
22
22
  [EnforceRange] unsigned long long height = 0;
23
23
  boolean disallowReturnToOpener = false;
24
+ boolean preferInitialWindowPlacement = false;
24
25
  };
25
26
 
26
27
  [Exposed=Window, SecureContext]
package/dom.idl CHANGED
@@ -120,9 +120,9 @@ interface mixin ParentNode {
120
120
  readonly attribute Element? lastElementChild;
121
121
  readonly attribute unsigned long childElementCount;
122
122
 
123
- [CEReactions, Unscopable] undefined prepend((Node or TrustedScript or DOMString)... nodes);
124
- [CEReactions, Unscopable] undefined append((Node or TrustedScript or DOMString)... nodes);
125
- [CEReactions, Unscopable] undefined replaceChildren((Node or TrustedScript or DOMString)... nodes);
123
+ [CEReactions, Unscopable] undefined prepend((Node or DOMString)... nodes);
124
+ [CEReactions, Unscopable] undefined append((Node or DOMString)... nodes);
125
+ [CEReactions, Unscopable] undefined replaceChildren((Node or DOMString)... nodes);
126
126
 
127
127
  Element? querySelector(DOMString selectors);
128
128
  [NewObject] NodeList querySelectorAll(DOMString selectors);
@@ -139,9 +139,9 @@ Element includes NonDocumentTypeChildNode;
139
139
  CharacterData includes NonDocumentTypeChildNode;
140
140
 
141
141
  interface mixin ChildNode {
142
- [CEReactions, Unscopable] undefined before((Node or TrustedScript or DOMString)... nodes);
143
- [CEReactions, Unscopable] undefined after((Node or TrustedScript or DOMString)... nodes);
144
- [CEReactions, Unscopable] undefined replaceWith((Node or TrustedScript or DOMString)... nodes);
142
+ [CEReactions, Unscopable] undefined before((Node or DOMString)... nodes);
143
+ [CEReactions, Unscopable] undefined after((Node or DOMString)... nodes);
144
+ [CEReactions, Unscopable] undefined replaceWith((Node or DOMString)... nodes);
145
145
  [CEReactions, Unscopable] undefined remove();
146
146
  };
147
147
  DocumentType includes ChildNode;
package/fenced-frame.idl CHANGED
@@ -10,6 +10,7 @@ interface HTMLFencedFrameElement : HTMLElement {
10
10
  [CEReactions] attribute FencedFrameConfig? config;
11
11
  [CEReactions] attribute DOMString width;
12
12
  [CEReactions] attribute DOMString height;
13
+ [SameObject, PutForwards=value] readonly attribute DOMTokenList sandbox;
13
14
  [CEReactions] attribute DOMString allow;
14
15
  };
15
16
 
package/html.idl CHANGED
@@ -125,6 +125,7 @@ interface HTMLElement : Element {
125
125
  [CEReactions] attribute boolean spellcheck;
126
126
  [CEReactions] attribute DOMString writingSuggestions;
127
127
  [CEReactions] attribute DOMString autocapitalize;
128
+ [CEReactions] attribute boolean autocorrect;
128
129
 
129
130
  [CEReactions] attribute [LegacyNullToEmptyString] DOMString innerText;
130
131
  [CEReactions] attribute [LegacyNullToEmptyString] DOMString outerText;
@@ -16,7 +16,6 @@ dictionary InkPresenterParam {
16
16
  [Exposed=Window]
17
17
  interface InkPresenter {
18
18
  readonly attribute Element? presentationArea;
19
- readonly attribute unsigned long expectedImprovement;
20
19
 
21
20
  undefined updateInkTrailStartPoint(PointerEvent event, InkTrailStyle style);
22
21
  };
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.52.1",
4
+ "version": "3.53.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -94,38 +94,3 @@ dictionary AddressInit {
94
94
  DOMString recipient = "";
95
95
  DOMString phone = "";
96
96
  };
97
-
98
- dictionary PaymentOptions {
99
- boolean requestPayerName = false;
100
- boolean requestBillingAddress = false;
101
- boolean requestPayerEmail = false;
102
- boolean requestPayerPhone = false;
103
- boolean requestShipping = false;
104
- PaymentShippingType shippingType = "shipping";
105
- };
106
-
107
- dictionary PaymentShippingOption {
108
- required DOMString id;
109
- required DOMString label;
110
- required PaymentCurrencyAmount amount;
111
- boolean selected = false;
112
- };
113
-
114
- enum PaymentShippingType {
115
- "shipping",
116
- "delivery",
117
- "pickup"
118
- };
119
-
120
- dictionary AddressErrors {
121
- DOMString addressLine;
122
- DOMString city;
123
- DOMString country;
124
- DOMString dependentLocality;
125
- DOMString organization;
126
- DOMString phone;
127
- DOMString postalCode;
128
- DOMString recipient;
129
- DOMString region;
130
- DOMString sortingCode;
131
- };
@@ -7,7 +7,8 @@
7
7
  interface PaymentRequest : EventTarget {
8
8
  constructor(
9
9
  sequence<PaymentMethodData> methodData,
10
- PaymentDetailsInit details
10
+ PaymentDetailsInit details,
11
+ optional PaymentOptions options = {}
11
12
  );
12
13
  [NewObject]
13
14
  Promise<PaymentResponse> show(optional Promise<PaymentDetailsUpdate> detailsPromise);
@@ -17,7 +18,12 @@ interface PaymentRequest : EventTarget {
17
18
  Promise<boolean> canMakePayment();
18
19
 
19
20
  readonly attribute DOMString id;
21
+ readonly attribute ContactAddress? shippingAddress;
22
+ readonly attribute DOMString? shippingOption;
23
+ readonly attribute PaymentShippingType? shippingType;
20
24
 
25
+ attribute EventHandler onshippingaddresschange;
26
+ attribute EventHandler onshippingoptionchange;
21
27
  attribute EventHandler onpaymentmethodchange;
22
28
  };
23
29
 
@@ -33,6 +39,7 @@ dictionary PaymentCurrencyAmount {
33
39
 
34
40
  dictionary PaymentDetailsBase {
35
41
  sequence<PaymentItem> displayItems;
42
+ sequence<PaymentShippingOption> shippingOptions;
36
43
  sequence<PaymentDetailsModifier> modifiers;
37
44
  };
38
45
 
@@ -42,7 +49,10 @@ dictionary PaymentDetailsInit : PaymentDetailsBase {
42
49
  };
43
50
 
44
51
  dictionary PaymentDetailsUpdate : PaymentDetailsBase {
52
+ DOMString error;
45
53
  PaymentItem total;
54
+ AddressErrors shippingAddressErrors;
55
+ PayerErrors payerErrors;
46
56
  object paymentMethodErrors;
47
57
  };
48
58
 
@@ -53,6 +63,21 @@ dictionary PaymentDetailsModifier {
53
63
  object data;
54
64
  };
55
65
 
66
+ enum PaymentShippingType {
67
+ "shipping",
68
+ "delivery",
69
+ "pickup"
70
+ };
71
+
72
+ dictionary PaymentOptions {
73
+ boolean requestPayerName = false;
74
+ boolean requestBillingAddress = false;
75
+ boolean requestPayerEmail = false;
76
+ boolean requestPayerPhone = false;
77
+ boolean requestShipping = false;
78
+ PaymentShippingType shippingType = "shipping";
79
+ };
80
+
56
81
  dictionary PaymentItem {
57
82
  required DOMString label;
58
83
  required PaymentCurrencyAmount amount;
@@ -69,6 +94,13 @@ enum PaymentComplete {
69
94
  "unknown"
70
95
  };
71
96
 
97
+ dictionary PaymentShippingOption {
98
+ required DOMString id;
99
+ required DOMString label;
100
+ required PaymentCurrencyAmount amount;
101
+ boolean selected = false;
102
+ };
103
+
72
104
  [SecureContext, Exposed=Window]
73
105
  interface PaymentResponse : EventTarget {
74
106
  [Default] object toJSON();
@@ -76,6 +108,11 @@ interface PaymentResponse : EventTarget {
76
108
  readonly attribute DOMString requestId;
77
109
  readonly attribute DOMString methodName;
78
110
  readonly attribute object details;
111
+ readonly attribute ContactAddress? shippingAddress;
112
+ readonly attribute DOMString? shippingOption;
113
+ readonly attribute DOMString? payerName;
114
+ readonly attribute DOMString? payerEmail;
115
+ readonly attribute DOMString? payerPhone;
79
116
 
80
117
  [NewObject]
81
118
  Promise<undefined> complete(
@@ -84,13 +121,36 @@ interface PaymentResponse : EventTarget {
84
121
  );
85
122
  [NewObject]
86
123
  Promise<undefined> retry(optional PaymentValidationErrors errorFields = {});
124
+
125
+ attribute EventHandler onpayerdetailchange;
87
126
  };
88
127
 
89
128
  dictionary PaymentValidationErrors {
129
+ PayerErrors payer;
130
+ AddressErrors shippingAddress;
90
131
  DOMString error;
91
132
  object paymentMethod;
92
133
  };
93
134
 
135
+ dictionary PayerErrors {
136
+ DOMString email;
137
+ DOMString name;
138
+ DOMString phone;
139
+ };
140
+
141
+ dictionary AddressErrors {
142
+ DOMString addressLine;
143
+ DOMString city;
144
+ DOMString country;
145
+ DOMString dependentLocality;
146
+ DOMString organization;
147
+ DOMString phone;
148
+ DOMString postalCode;
149
+ DOMString recipient;
150
+ DOMString region;
151
+ DOMString sortingCode;
152
+ };
153
+
94
154
  [SecureContext, Exposed=Window]
95
155
  interface PaymentMethodChangeEvent : PaymentRequestUpdateEvent {
96
156
  constructor(DOMString type, optional PaymentMethodChangeEventInit eventInitDict = {});
package/pointerevents.idl CHANGED
@@ -16,6 +16,7 @@ dictionary PointerEventInit : MouseEventInit {
16
16
  double azimuthAngle;
17
17
  DOMString pointerType = "";
18
18
  boolean isPrimary = false;
19
+ long persistentDeviceId = 0;
19
20
  sequence<PointerEvent> coalescedEvents = [];
20
21
  sequence<PointerEvent> predictedEvents = [];
21
22
  };
@@ -35,6 +36,7 @@ interface PointerEvent : MouseEvent {
35
36
  readonly attribute double azimuthAngle;
36
37
  readonly attribute DOMString pointerType;
37
38
  readonly attribute boolean isPrimary;
39
+ readonly attribute long persistentDeviceId;
38
40
  [SecureContext] sequence<PointerEvent> getCoalescedEvents();
39
41
  sequence<PointerEvent> getPredictedEvents();
40
42
  };
@@ -9,35 +9,19 @@ enum TaskPriority {
9
9
  "background"
10
10
  };
11
11
 
12
- enum ContinuationPriority {
13
- "user-blocking",
14
- "user-visible",
15
- "background",
16
- "inherit"
17
- };
18
-
19
12
  dictionary SchedulerPostTaskOptions {
20
13
  AbortSignal signal;
21
14
  TaskPriority priority;
22
15
  [EnforceRange] unsigned long long delay = 0;
23
16
  };
24
17
 
25
- enum SchedulerSignalInherit {
26
- "inherit"
27
- };
28
-
29
- dictionary SchedulerYieldOptions {
30
- (AbortSignal or SchedulerSignalInherit) signal;
31
- ContinuationPriority priority;
32
- };
33
-
34
18
  callback SchedulerPostTaskCallback = any ();
35
19
 
36
20
  [Exposed=(Window, Worker)]
37
21
  interface Scheduler {
38
22
  Promise<any> postTask(SchedulerPostTaskCallback callback,
39
23
  optional SchedulerPostTaskOptions options = {});
40
- Promise<undefined> yield(optional SchedulerYieldOptions options = {});
24
+ Promise<undefined> yield();
41
25
  };
42
26
 
43
27
  [Exposed=(Window, Worker)]
@@ -23,7 +23,7 @@ interface SharedStorageWorkletGlobalScope : WorkletGlobalScope {
23
23
  undefined register(DOMString name,
24
24
  Function operationCtor);
25
25
 
26
- readonly attribute WorkletSharedStorage sharedStorage;
26
+ readonly attribute SharedStorage sharedStorage;
27
27
  };
28
28
 
29
29
  dictionary SharedStorageUrlWithMetadata {
@@ -31,6 +31,10 @@ dictionary SharedStorageUrlWithMetadata {
31
31
  object reportingMetadata;
32
32
  };
33
33
 
34
+ partial interface Window {
35
+ [SecureContext] readonly attribute SharedStorage? sharedStorage;
36
+ };
37
+
34
38
  [Exposed=(Window,SharedStorageWorklet)]
35
39
  interface SharedStorage {
36
40
  Promise<any> set(DOMString key,
@@ -40,23 +44,37 @@ interface SharedStorage {
40
44
  DOMString value);
41
45
  Promise<any> delete(DOMString key);
42
46
  Promise<any> clear();
43
- };
44
-
45
- dictionary SharedStorageSetMethodOptions {
46
- boolean ignoreIfPresent = false;
47
- };
48
47
 
49
- [Exposed=(Window)]
50
- interface WindowSharedStorage : SharedStorage {
48
+ [Exposed=Window]
51
49
  Promise<SharedStorageResponse> selectURL(DOMString name,
52
50
  sequence<SharedStorageUrlWithMetadata> urls,
53
51
  optional SharedStorageRunOperationMethodOptions options = {});
52
+
53
+ [Exposed=Window]
54
54
  Promise<any> run(DOMString name,
55
55
  optional SharedStorageRunOperationMethodOptions options = {});
56
56
 
57
+ [Exposed=Window]
57
58
  Promise<SharedStorageWorklet> createWorklet(USVString moduleURL, optional SharedStorageWorkletOptions options = {});
58
59
 
60
+ [Exposed=Window]
59
61
  readonly attribute SharedStorageWorklet worklet;
62
+
63
+ [Exposed=SharedStorageWorklet]
64
+ Promise<DOMString> get(DOMString key);
65
+
66
+ [Exposed=SharedStorageWorklet]
67
+ Promise<unsigned long> length();
68
+
69
+ [Exposed=SharedStorageWorklet]
70
+ Promise<double> remainingBudget();
71
+
72
+ [Exposed=SharedStorageWorklet]
73
+ async iterable<DOMString, DOMString>;
74
+ };
75
+
76
+ dictionary SharedStorageSetMethodOptions {
77
+ boolean ignoreIfPresent = false;
60
78
  };
61
79
 
62
80
  dictionary SharedStorageRunOperationMethodOptions {
@@ -69,19 +87,6 @@ dictionary SharedStorageWorkletOptions : WorkletOptions {
69
87
  SharedStorageDataOrigin dataOrigin = "context-origin";
70
88
  };
71
89
 
72
- partial interface Window {
73
- [SecureContext] readonly attribute WindowSharedStorage? sharedStorage;
74
- };
75
-
76
- [Exposed=(SharedStorageWorklet)]
77
- interface WorkletSharedStorage : SharedStorage {
78
- Promise<DOMString> get(DOMString key);
79
- Promise<unsigned long> length();
80
- Promise<double> remainingBudget();
81
-
82
- async iterable<DOMString, DOMString>;
83
- };
84
-
85
90
  interface mixin HTMLSharedStorageWritableElementUtils {
86
91
  [CEReactions, SecureContext] attribute boolean sharedStorageWritable;
87
92
  };
package/turtledove.idl CHANGED
@@ -10,6 +10,7 @@ partial interface Navigator {
10
10
 
11
11
  dictionary AuctionAd {
12
12
  required USVString renderURL;
13
+ USVString sizeGroup;
13
14
  any metadata;
14
15
 
15
16
  USVString buyerReportingId;
@@ -17,10 +18,14 @@ dictionary AuctionAd {
17
18
  sequence<USVString> allowedReportingOrigins;
18
19
  };
19
20
 
21
+ dictionary AuctionAdInterestGroupSize {
22
+ required USVString width;
23
+ required USVString height;
24
+ };
25
+
20
26
  dictionary GenerateBidInterestGroup {
21
27
  required USVString owner;
22
28
  required USVString name;
23
- required double lifetimeMs;
24
29
 
25
30
  boolean enableBiddingSignalsPrioritization = false;
26
31
  record<DOMString, double> priorityVector;
@@ -37,11 +42,14 @@ dictionary GenerateBidInterestGroup {
37
42
  any userBiddingSignals;
38
43
  sequence<AuctionAd> ads;
39
44
  sequence<AuctionAd> adComponents;
45
+ record<DOMString, AuctionAdInterestGroupSize> adSizes;
46
+ record<DOMString, sequence<DOMString>> sizeGroups;
40
47
  };
41
48
 
42
49
  dictionary AuctionAdInterestGroup : GenerateBidInterestGroup {
43
50
  double priority = 0.0;
44
51
  record<DOMString, double> prioritySignalsOverrides;
52
+ required double lifetimeMs;
45
53
  DOMString additionalBidKey;
46
54
  };
47
55
 
@@ -104,6 +112,9 @@ dictionary AuctionAdConfig {
104
112
  sequence<AuctionAdConfig> componentAuctions = [];
105
113
  AbortSignal? signal;
106
114
  Promise<boolean> resolveToConfig;
115
+
116
+ Promise<Uint8Array> serverResponse;
117
+ USVString requestId;
107
118
  };
108
119
 
109
120
  [SecureContext]
@@ -111,6 +122,21 @@ partial interface Navigator {
111
122
  boolean canLoadAdAuctionFencedFrame();
112
123
  };
113
124
 
125
+ [SecureContext]
126
+ partial interface Navigator {
127
+ Promise<AdAuctionData> getInterestGroupAdAuctionData(AdAuctionDataConfig config);
128
+ };
129
+
130
+ dictionary AdAuctionDataConfig {
131
+ required USVString seller;
132
+ required USVString coordinatorOrigin;
133
+ };
134
+
135
+ dictionary AdAuctionData {
136
+ required Uint8Array request;
137
+ required USVString requestId;
138
+ };
139
+
114
140
  [SecureContext]
115
141
  partial interface Navigator {
116
142
  Promise<DOMString> createAuctionNonce();
package/webauthn.idl CHANGED
@@ -19,7 +19,7 @@ typedef DOMString Base64URLString;
19
19
  typedef object PublicKeyCredentialJSON;
20
20
 
21
21
  dictionary RegistrationResponseJSON {
22
- required Base64URLString id;
22
+ required DOMString id;
23
23
  required Base64URLString rawId;
24
24
  required AuthenticatorAttestationResponseJSON response;
25
25
  DOMString authenticatorAttachment;
@@ -45,7 +45,7 @@ dictionary AuthenticatorAttestationResponseJSON {
45
45
  };
46
46
 
47
47
  dictionary AuthenticationResponseJSON {
48
- required Base64URLString id;
48
+ required DOMString id;
49
49
  required Base64URLString rawId;
50
50
  required AuthenticatorAssertionResponseJSON response;
51
51
  DOMString authenticatorAttachment;
@@ -106,8 +106,8 @@ dictionary PublicKeyCredentialUserEntityJSON {
106
106
  };
107
107
 
108
108
  dictionary PublicKeyCredentialDescriptorJSON {
109
- required Base64URLString id;
110
109
  required DOMString type;
110
+ required Base64URLString id;
111
111
  sequence<DOMString> transports;
112
112
  };
113
113
 
@@ -128,6 +128,30 @@ dictionary PublicKeyCredentialRequestOptionsJSON {
128
128
  AuthenticationExtensionsClientInputsJSON extensions;
129
129
  };
130
130
 
131
+ partial interface PublicKeyCredential {
132
+ static Promise<undefined> signalUnknownCredential(UnknownCredentialOptions options);
133
+ static Promise<undefined> signalAllAcceptedCredentials(AllAcceptedCredentialsOptions options);
134
+ static Promise<undefined> signalCurrentUserDetails(CurrentUserDetailsOptions options);
135
+ };
136
+
137
+ dictionary UnknownCredentialOptions {
138
+ required DOMString rpId;
139
+ required Base64URLString credentialId;
140
+ };
141
+
142
+ dictionary AllAcceptedCredentialsOptions {
143
+ required DOMString rpId;
144
+ required Base64URLString userId;
145
+ required sequence<Base64URLString> allAcceptedCredentialIds;
146
+ };
147
+
148
+ dictionary CurrentUserDetailsOptions {
149
+ required DOMString rpId;
150
+ required Base64URLString userId;
151
+ required DOMString name;
152
+ required DOMString displayName;
153
+ };
154
+
131
155
  [SecureContext, Exposed=Window]
132
156
  interface AuthenticatorResponse {
133
157
  [SameObject] readonly attribute ArrayBuffer clientDataJSON;
@@ -211,7 +235,7 @@ enum AttestationConveyancePreference {
211
235
  dictionary PublicKeyCredentialRequestOptions {
212
236
  required BufferSource challenge;
213
237
  unsigned long timeout;
214
- USVString rpId;
238
+ DOMString rpId;
215
239
  sequence<PublicKeyCredentialDescriptor> allowCredentials = [];
216
240
  DOMString userVerification = "preferred";
217
241
  sequence<DOMString> hints = [];
@@ -228,8 +252,8 @@ dictionary CollectedClientData {
228
252
  required DOMString type;
229
253
  required DOMString challenge;
230
254
  required DOMString origin;
231
- DOMString topOrigin;
232
255
  boolean crossOrigin;
256
+ DOMString topOrigin;
233
257
  };
234
258
 
235
259
  dictionary TokenBinding {
@@ -272,7 +296,10 @@ enum ClientCapability {
272
296
  "hybridTransport",
273
297
  "passkeyPlatformAuthenticator",
274
298
  "userVerifyingPlatformAuthenticator",
275
- "relatedOrigins"
299
+ "relatedOrigins",
300
+ "signalAllAcceptedCredentials",
301
+ "signalCurrentUserDetails",
302
+ "signalUnknownCredential"
276
303
  };
277
304
 
278
305
  enum PublicKeyCredentialHints {
@@ -303,7 +330,7 @@ partial dictionary AuthenticationExtensionsClientInputs {
303
330
 
304
331
  dictionary CredentialPropertiesOutput {
305
332
  boolean rk;
306
- USVString authenticatorDisplayName;
333
+ DOMString authenticatorDisplayName;
307
334
  };
308
335
 
309
336
  partial dictionary AuthenticationExtensionsClientOutputs {
@@ -357,21 +384,3 @@ dictionary AuthenticationExtensionsLargeBlobOutputs {
357
384
  ArrayBuffer blob;
358
385
  boolean written;
359
386
  };
360
-
361
- dictionary AuthenticationExtensionsSupplementalPubKeysInputs {
362
- required sequence<DOMString> scopes;
363
- DOMString attestation = "indirect";
364
- sequence<DOMString> attestationFormats = [];
365
- };
366
-
367
- partial dictionary AuthenticationExtensionsClientInputs {
368
- AuthenticationExtensionsSupplementalPubKeysInputs supplementalPubKeys;
369
- };
370
-
371
- dictionary AuthenticationExtensionsSupplementalPubKeysOutputs {
372
- required sequence<ArrayBuffer> signatures;
373
- };
374
-
375
- partial dictionary AuthenticationExtensionsClientOutputs {
376
- AuthenticationExtensionsSupplementalPubKeysOutputs supplementalPubKeys;
377
- };
package/webgpu.idl CHANGED
@@ -35,7 +35,6 @@ interface GPUSupportedLimits {
35
35
  readonly attribute unsigned long long maxBufferSize;
36
36
  readonly attribute unsigned long maxVertexAttributes;
37
37
  readonly attribute unsigned long maxVertexBufferArrayStride;
38
- readonly attribute unsigned long maxInterStageShaderComponents;
39
38
  readonly attribute unsigned long maxInterStageShaderVariables;
40
39
  readonly attribute unsigned long maxColorAttachments;
41
40
  readonly attribute unsigned long maxColorAttachmentBytesPerSample;
@@ -101,7 +100,7 @@ interface GPUAdapter {
101
100
  dictionary GPUDeviceDescriptor
102
101
  : GPUObjectDescriptorBase {
103
102
  sequence<GPUFeatureName> requiredFeatures = [];
104
- record<DOMString, GPUSize64> requiredLimits = {};
103
+ record<DOMString, (GPUSize64 or undefined)> requiredLimits = {};
105
104
  GPUQueueDescriptor defaultQueue = {};
106
105
  };
107
106
 
@@ -579,7 +578,6 @@ GPUShaderModule includes GPUObjectBase;
579
578
  dictionary GPUShaderModuleDescriptor
580
579
  : GPUObjectDescriptorBase {
581
580
  required USVString code;
582
- object sourceMap;
583
581
  sequence<GPUShaderModuleCompilationHint> compilationHints = [];
584
582
  };
585
583
 
package/webrtc.idl CHANGED
@@ -317,6 +317,7 @@ dictionary RTCRtpCodingParameters {
317
317
 
318
318
  dictionary RTCRtpEncodingParameters : RTCRtpCodingParameters {
319
319
  boolean active = true;
320
+ RTCRtpCodec codec;
320
321
  unsigned long maxBitrate;
321
322
  double maxFramerate;
322
323
  double scaleResolutionDownBy;
package/webxr.idl CHANGED
@@ -178,7 +178,7 @@ interface XRInputSource {
178
178
  [SameObject] readonly attribute XRSpace targetRaySpace;
179
179
  [SameObject] readonly attribute XRSpace? gripSpace;
180
180
  [SameObject] readonly attribute FrozenArray<DOMString> profiles;
181
- [SameObject] readonly attribute boolean skipRendering;
181
+ readonly attribute boolean skipRendering;
182
182
  };
183
183
 
184
184
  [SecureContext, Exposed=Window]