@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.
- package/{css-contain-3.idl → css-conditional-5.idl} +1 -1
- package/geolocation.idl +1 -1
- package/package.json +1 -1
- package/pointerlock.idl +6 -2
- package/turtledove.idl +5 -0
- package/webgpu.idl +4 -0
- package/webrtc.idl +1 -4
|
@@ -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
|
|
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
|
|
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
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
|
|
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
package/webrtc.idl
CHANGED
|
@@ -345,13 +345,10 @@ dictionary RTCRtpCodecParameters : RTCRtpCodec {
|
|
|
345
345
|
};
|
|
346
346
|
|
|
347
347
|
dictionary RTCRtpCapabilities {
|
|
348
|
-
required sequence<
|
|
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
|
};
|