@webref/idl 3.68.1 → 3.68.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.
@@ -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: CSS Anchor Positioning (https://drafts.csswg.org/css-anchor-position-1/)
4
+ // Source: CSS Anchor Positioning Module Level 1 (https://drafts.csswg.org/css-anchor-position-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSPositionTryRule : CSSRule {
@@ -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: CSS Animations Level 2 (https://drafts.csswg.org/css-animations-2/)
4
+ // Source: CSS Animations Module Level 2 (https://drafts.csswg.org/css-animations-2/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSAnimation : Animation {
@@ -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: CSS Animations Level 1 (https://drafts.csswg.org/css-animations-1/)
4
+ // Source: CSS Animations Module Level 1 (https://drafts.csswg.org/css-animations-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface AnimationEvent : Event {
@@ -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: CSS Counter Styles Level 3 (https://drafts.csswg.org/css-counter-styles-3/)
4
+ // Source: CSS Counter Styles Module Level 3 (https://drafts.csswg.org/css-counter-styles-3/)
5
5
 
6
6
  partial interface CSSRule {
7
7
  const unsigned short COUNTER_STYLE_RULE = 11;
package/css-nav.idl 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: CSS Spatial Navigation Level 1 (https://drafts.csswg.org/css-nav-1/)
4
+ // Source: CSS Spatial Navigation Module Level 1 (https://drafts.csswg.org/css-nav-1/)
5
5
 
6
6
  enum SpatialNavigationDirection {
7
7
  "up",
package/css-nesting.idl 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: CSS Nesting Module (https://drafts.csswg.org/css-nesting-1/)
4
+ // Source: CSS Nesting Module Level 1 (https://drafts.csswg.org/css-nesting-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSNestedDeclarations : CSSRule {
@@ -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: CSS Shadow Parts (https://drafts.csswg.org/css-shadow-parts-1/)
4
+ // Source: CSS Shadow Parts Module Level 1 (https://drafts.csswg.org/css-shadow-parts-1/)
5
5
 
6
6
  partial interface Element {
7
7
  [SameObject, PutForwards=value] readonly attribute DOMTokenList part;
@@ -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: CSS Transitions Level 2 (https://drafts.csswg.org/css-transitions-2/)
4
+ // Source: CSS Transitions Module Level 2 (https://drafts.csswg.org/css-transitions-2/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSStartingStyleRule : CSSGroupingRule {
@@ -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: CSS Transitions Level 1 (https://drafts.csswg.org/css-transitions-1/)
4
+ // Source: CSS Transitions Module Level 1 (https://drafts.csswg.org/css-transitions-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface TransitionEvent : Event {
package/cssom-view.idl 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: CSSOM View Module (https://drafts.csswg.org/cssom-view-1/)
4
+ // Source: CSSOM View Module Level 1 (https://drafts.csswg.org/cssom-view-1/)
5
5
 
6
6
  enum ScrollBehavior { "auto", "instant", "smooth" };
7
7
 
@@ -33,12 +33,12 @@ partial interface Window {
33
33
  [Replaceable] readonly attribute double pageXOffset;
34
34
  [Replaceable] readonly attribute double scrollY;
35
35
  [Replaceable] readonly attribute double pageYOffset;
36
- undefined scroll(optional ScrollToOptions options = {});
37
- undefined scroll(unrestricted double x, unrestricted double y);
38
- undefined scrollTo(optional ScrollToOptions options = {});
39
- undefined scrollTo(unrestricted double x, unrestricted double y);
40
- undefined scrollBy(optional ScrollToOptions options = {});
41
- undefined scrollBy(unrestricted double x, unrestricted double y);
36
+ Promise<undefined> scroll(optional ScrollToOptions options = {});
37
+ Promise<undefined> scroll(unrestricted double x, unrestricted double y);
38
+ Promise<undefined> scrollTo(optional ScrollToOptions options = {});
39
+ Promise<undefined> scrollTo(unrestricted double x, unrestricted double y);
40
+ Promise<undefined> scrollBy(optional ScrollToOptions options = {});
41
+ Promise<undefined> scrollBy(unrestricted double x, unrestricted double y);
42
42
 
43
43
  // client
44
44
  [Replaceable] readonly attribute long screenX;
@@ -122,13 +122,13 @@ partial interface Element {
122
122
 
123
123
  boolean checkVisibility(optional CheckVisibilityOptions options = {});
124
124
 
125
- undefined scrollIntoView(optional (boolean or ScrollIntoViewOptions) arg = {});
126
- undefined scroll(optional ScrollToOptions options = {});
127
- undefined scroll(unrestricted double x, unrestricted double y);
128
- undefined scrollTo(optional ScrollToOptions options = {});
129
- undefined scrollTo(unrestricted double x, unrestricted double y);
130
- undefined scrollBy(optional ScrollToOptions options = {});
131
- undefined scrollBy(unrestricted double x, unrestricted double y);
125
+ Promise<undefined> scrollIntoView(optional (boolean or ScrollIntoViewOptions) arg = {});
126
+ Promise<undefined> scroll(optional ScrollToOptions options = {});
127
+ Promise<undefined> scroll(unrestricted double x, unrestricted double y);
128
+ Promise<undefined> scrollTo(optional ScrollToOptions options = {});
129
+ Promise<undefined> scrollTo(unrestricted double x, unrestricted double y);
130
+ Promise<undefined> scrollBy(optional ScrollToOptions options = {});
131
+ Promise<undefined> scrollBy(unrestricted double x, unrestricted double y);
132
132
  attribute unrestricted double scrollTop;
133
133
  attribute unrestricted double scrollLeft;
134
134
  readonly attribute long scrollWidth;
package/cssom.idl 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: CSS Object Model (CSSOM) (https://drafts.csswg.org/cssom-1/)
4
+ // Source: CSS Object Model (CSSOM) Module Level 1 (https://drafts.csswg.org/cssom-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface MediaList {
package/fedcm.idl CHANGED
@@ -120,6 +120,7 @@ dictionary IdentityAssertionResponse {
120
120
  dictionary IdentityProviderClientMetadata {
121
121
  USVString privacy_policy_url;
122
122
  USVString terms_of_service_url;
123
+ boolean client_is_third_party_to_top_frame_origin = false;
123
124
  };
124
125
 
125
126
  dictionary IdentityUserInfo {
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.68.1",
4
+ "version": "3.68.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -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: Resize Observer (https://drafts.csswg.org/resize-observer-1/)
4
+ // Source: Resize Observer Module Level 1 (https://drafts.csswg.org/resize-observer-1/)
5
5
 
6
6
  enum ResizeObserverBoxOptions {
7
7
  "border-box", "content-box", "device-pixel-content-box"
@@ -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: Scroll-driven Animations (https://drafts.csswg.org/scroll-animations-1/)
4
+ // Source: Scroll-driven Animations Module Level 1 (https://drafts.csswg.org/scroll-animations-1/)
5
5
 
6
6
  enum ScrollAxis {
7
7
  "block",
@@ -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: Web Animations Level 2 (https://drafts.csswg.org/web-animations-2/)
4
+ // Source: Web Animations Module Level 2 (https://drafts.csswg.org/web-animations-2/)
5
5
 
6
6
  [Exposed=Window]
7
7
  partial interface AnimationTimeline {
@@ -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: Web Animations (https://drafts.csswg.org/web-animations-1/)
4
+ // Source: Web Animations Module Level 1 (https://drafts.csswg.org/web-animations-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface AnimationTimeline {
package/webgpu.idl CHANGED
@@ -130,6 +130,7 @@ enum GPUFeatureName {
130
130
  "texture-formats-tier1",
131
131
  "texture-formats-tier2",
132
132
  "primitive-index",
133
+ "texture-component-swizzle",
133
134
  };
134
135
 
135
136
  [Exposed=(Window, Worker), SecureContext]
@@ -273,6 +274,9 @@ dictionary GPUTextureViewDescriptor
273
274
  GPUIntegerCoordinate mipLevelCount;
274
275
  GPUIntegerCoordinate baseArrayLayer = 0;
275
276
  GPUIntegerCoordinate arrayLayerCount;
277
+
278
+ // Requires "texture-component-swizzle" feature.
279
+ DOMString swizzle = "rgba";
276
280
  };
277
281
 
278
282
  enum GPUTextureViewDimension {
@@ -14,11 +14,6 @@ partial interface RTCRtpReceiver {
14
14
  attribute RTCRtpTransform? transform;
15
15
  };
16
16
 
17
- enum SFrameTransformRole {
18
- "encrypt",
19
- "decrypt"
20
- };
21
-
22
17
  // List of supported cipher suites, as defined in [[RFC9605]] section 4.5.
23
18
  enum SFrameCipherSuite {
24
19
  "AES_128_CTR_HMAC_SHA256_80",
@@ -29,20 +24,36 @@ enum SFrameCipherSuite {
29
24
  };
30
25
 
31
26
  dictionary SFrameTransformOptions {
32
- SFrameTransformRole role = "encrypt";
33
27
  required SFrameCipherSuite cipherSuite;
34
28
  };
35
29
 
36
30
  typedef [EnforceRange] unsigned long long SmallCryptoKeyID;
37
31
  typedef (SmallCryptoKeyID or bigint) CryptoKeyID;
38
32
 
39
- [Exposed=(Window,DedicatedWorker)]
40
- interface SFrameTransform : EventTarget {
41
- constructor(optional SFrameTransformOptions options = {});
33
+ interface mixin SFrameKeyManagement {
42
34
  Promise<undefined> setEncryptionKey(CryptoKey key, optional CryptoKeyID keyID);
43
35
  attribute EventHandler onerror;
44
36
  };
45
- SFrameTransform includes GenericTransformStream;
37
+
38
+ [Exposed=Window]
39
+ interface SFrameTransform : EventTarget {
40
+ constructor(optional SFrameTransformOptions options = {});
41
+ };
42
+ SFrameTransform includes SFrameKeyManagement;
43
+
44
+ [Exposed=(Window,DedicatedWorker)]
45
+ interface SFrameEncrypterStream : EventTarget {
46
+ constructor(optional SFrameTransformOptions options = {});
47
+ };
48
+ SFrameEncrypterStream includes GenericTransformStream;
49
+ SFrameEncrypterStream includes SFrameKeyManagement;
50
+
51
+ [Exposed=(Window,DedicatedWorker)]
52
+ interface SFrameDecrypterStream : EventTarget {
53
+ constructor(optional SFrameTransformOptions options = {});
54
+ };
55
+ SFrameDecrypterStream includes GenericTransformStream;
56
+ SFrameDecrypterStream includes SFrameKeyManagement;
46
57
 
47
58
  enum SFrameTransformErrorEventType {
48
59
  "authentication",