@webref/idl 3.48.1 → 3.49.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.
@@ -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 Containment Module Level 3 (https://drafts.csswg.org/css-contain-3/)
4
+ // Source: CSS Conditional Rules Module Level 5 (https://drafts.csswg.org/css-conditional-5/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSContainerRule : CSSConditionRule {
package/geolocation.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: Geolocation API (https://w3c.github.io/geolocation-api/)
4
+ // Source: Geolocation (https://w3c.github.io/geolocation/)
5
5
 
6
6
  partial interface Navigator {
7
7
  [SameObject] readonly attribute Geolocation geolocation;
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.48.1",
4
+ "version": "3.49.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/pointerlock.idl CHANGED
@@ -3,8 +3,12 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: Pointer Lock 2.0 (https://w3c.github.io/pointerlock/)
5
5
 
6
+ dictionary PointerLockOptions {
7
+ boolean unadjustedMovement = false;
8
+ };
9
+
6
10
  partial interface Element {
7
- undefined requestPointerLock();
11
+ Promise<undefined> requestPointerLock(optional PointerLockOptions options = {});
8
12
  };
9
13
 
10
14
  partial interface Document {
@@ -14,7 +18,7 @@ partial interface Document {
14
18
  };
15
19
 
16
20
  partial interface mixin DocumentOrShadowRoot {
17
- readonly attribute Element ? pointerLockElement;
21
+ readonly attribute Element? pointerLockElement;
18
22
  };
19
23
 
20
24
  partial interface MouseEvent {
package/turtledove.idl CHANGED
@@ -100,6 +100,11 @@ dictionary AuctionAdConfig {
100
100
  Promise<boolean> resolveToConfig;
101
101
  };
102
102
 
103
+ [SecureContext]
104
+ partial interface Navigator {
105
+ boolean canLoadAdAuctionFencedFrame();
106
+ };
107
+
103
108
  [SecureContext]
104
109
  partial interface Navigator {
105
110
  Promise<DOMString> createAuctionNonce();
package/webgpu.idl CHANGED
@@ -751,6 +751,10 @@ enum GPUBlendFactor {
751
751
  "src-alpha-saturated",
752
752
  "constant",
753
753
  "one-minus-constant",
754
+ "src1",
755
+ "one-minus-src1",
756
+ "src1-alpha",
757
+ "one-minus-src1-alpha",
754
758
  };
755
759
 
756
760
  enum GPUBlendOperation {
package/webrtc.idl CHANGED
@@ -345,13 +345,10 @@ dictionary RTCRtpCodecParameters : RTCRtpCodec {
345
345
  };
346
346
 
347
347
  dictionary RTCRtpCapabilities {
348
- required sequence<RTCRtpCodecCapability> codecs;
348
+ required sequence<RTCRtpCodec> codecs;
349
349
  required sequence<RTCRtpHeaderExtensionCapability> headerExtensions;
350
350
  };
351
351
 
352
- dictionary RTCRtpCodecCapability : RTCRtpCodec {
353
- };
354
-
355
352
  dictionary RTCRtpHeaderExtensionCapability {
356
353
  required DOMString uri;
357
354
  };