@webref/idl 3.39.0 → 3.39.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.
@@ -10,7 +10,6 @@ dictionary FontFaceDescriptors {
10
10
  CSSOMString weight = "normal";
11
11
  CSSOMString stretch = "normal";
12
12
  CSSOMString unicodeRange = "U+0-10FFFF";
13
- CSSOMString variant = "normal";
14
13
  CSSOMString featureSettings = "normal";
15
14
  CSSOMString variationSettings = "normal";
16
15
  CSSOMString display = "auto";
@@ -30,7 +29,6 @@ interface FontFace {
30
29
  attribute CSSOMString weight;
31
30
  attribute CSSOMString stretch;
32
31
  attribute CSSOMString unicodeRange;
33
- attribute CSSOMString variant;
34
32
  attribute CSSOMString featureSettings;
35
33
  attribute CSSOMString variationSettings;
36
34
  attribute CSSOMString display;
package/html.idl CHANGED
@@ -1196,6 +1196,7 @@ dictionary FormDataEventInit : EventInit {
1196
1196
  interface HTMLDetailsElement : HTMLElement {
1197
1197
  [HTMLConstructor] constructor();
1198
1198
 
1199
+ [CEReactions] attribute DOMString name;
1199
1200
  [CEReactions] attribute boolean open;
1200
1201
  };
1201
1202
 
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.39.0",
4
+ "version": "3.39.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -18,14 +18,8 @@ interface StorageBucketManager {
18
18
  Promise<undefined> delete(DOMString name);
19
19
  };
20
20
 
21
- enum StorageBucketDurability {
22
- "strict",
23
- "relaxed"
24
- };
25
-
26
21
  dictionary StorageBucketOptions {
27
- boolean? persisted = null;
28
- StorageBucketDurability? durability = null;
22
+ boolean persisted = false;
29
23
  unsigned long long? quota = null;
30
24
  DOMHighResTimeStamp? expires = null;
31
25
  };
@@ -40,8 +34,6 @@ interface StorageBucket {
40
34
 
41
35
  Promise<StorageEstimate> estimate();
42
36
 
43
- Promise<StorageBucketDurability> durability();
44
-
45
37
  Promise<undefined> setExpires(DOMHighResTimeStamp expires);
46
38
  Promise<DOMHighResTimeStamp?> expires();
47
39
 
package/streams.idl CHANGED
@@ -174,6 +174,7 @@ dictionary Transformer {
174
174
  TransformerStartCallback start;
175
175
  TransformerTransformCallback transform;
176
176
  TransformerFlushCallback flush;
177
+ TransformerCancelCallback cancel;
177
178
  any readableType;
178
179
  any writableType;
179
180
  };
@@ -181,6 +182,7 @@ dictionary Transformer {
181
182
  callback TransformerStartCallback = any (TransformStreamDefaultController controller);
182
183
  callback TransformerFlushCallback = Promise<undefined> (TransformStreamDefaultController controller);
183
184
  callback TransformerTransformCallback = Promise<undefined> (any chunk, TransformStreamDefaultController controller);
185
+ callback TransformerCancelCallback = Promise<undefined> (any reason);
184
186
 
185
187
  [Exposed=*]
186
188
  interface TransformStreamDefaultController {
package/webauthn.idl CHANGED
@@ -7,14 +7,16 @@
7
7
  interface PublicKeyCredential : Credential {
8
8
  [SameObject] readonly attribute ArrayBuffer rawId;
9
9
  [SameObject] readonly attribute AuthenticatorResponse response;
10
- [SameObject] readonly attribute DOMString? authenticatorAttachment;
10
+ readonly attribute DOMString? authenticatorAttachment;
11
11
  AuthenticationExtensionsClientOutputs getClientExtensionResults();
12
12
  static Promise<boolean> isConditionalMediationAvailable();
13
13
  PublicKeyCredentialJSON toJSON();
14
14
  };
15
15
 
16
16
  typedef DOMString Base64URLString;
17
- typedef (RegistrationResponseJSON or AuthenticationResponseJSON) PublicKeyCredentialJSON;
17
+ // The structure of this object will be either
18
+ // RegistrationResponseJSON or AuthenticationResponseJSON
19
+ typedef object PublicKeyCredentialJSON;
18
20
 
19
21
  dictionary RegistrationResponseJSON {
20
22
  required Base64URLString id;
package/webgpu.idl CHANGED
@@ -828,6 +828,7 @@ enum GPUVertexFormat {
828
828
  "sint32x2",
829
829
  "sint32x3",
830
830
  "sint32x4",
831
+ "unorm10-10-10-2",
831
832
  };
832
833
 
833
834
  enum GPUVertexStepMode {
@@ -74,6 +74,7 @@ dictionary RTCEncodedVideoFrameMetadata {
74
74
  octet payloadType;
75
75
  sequence<unsigned long> contributingSources;
76
76
  long long timestamp; // microseconds
77
+ unsigned long rtpTimestamp;
77
78
  };
78
79
 
79
80
  // New interfaces to define encoded video and audio frames. Will eventually
@@ -81,7 +82,6 @@ dictionary RTCEncodedVideoFrameMetadata {
81
82
  [Exposed=(Window,DedicatedWorker), Serializable]
82
83
  interface RTCEncodedVideoFrame {
83
84
  readonly attribute RTCEncodedVideoFrameType type;
84
- readonly attribute unsigned long timestamp;
85
85
  attribute ArrayBuffer data;
86
86
  RTCEncodedVideoFrameMetadata getMetadata();
87
87
  };
@@ -91,11 +91,11 @@ dictionary RTCEncodedAudioFrameMetadata {
91
91
  octet payloadType;
92
92
  sequence<unsigned long> contributingSources;
93
93
  short sequenceNumber;
94
+ unsigned long rtpTimestamp;
94
95
  };
95
96
 
96
97
  [Exposed=(Window,DedicatedWorker), Serializable]
97
98
  interface RTCEncodedAudioFrame {
98
- readonly attribute unsigned long timestamp;
99
99
  attribute ArrayBuffer data;
100
100
  RTCEncodedAudioFrameMetadata getMetadata();
101
101
  };
package/webxr.idl CHANGED
@@ -167,7 +167,8 @@ enum XRHandedness {
167
167
  enum XRTargetRayMode {
168
168
  "gaze",
169
169
  "tracked-pointer",
170
- "screen"
170
+ "screen",
171
+ "transient-pointer"
171
172
  };
172
173
 
173
174
  [SecureContext, Exposed=Window]