@webref/idl 3.24.2 → 3.25.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.
- package/FedCM.idl +1 -16
- package/WEBGL_clip_cull_distance.idl +20 -0
- package/WEBGL_provoking_vertex.idl +13 -0
- package/contact-picker.idl +1 -1
- package/css-view-transitions.idl +4 -4
- package/fetch.idl +1 -0
- package/gpc-spec.idl +10 -0
- package/html.idl +26 -0
- package/package.json +1 -1
- package/requestStorageAccessForOrigin.idl +12 -0
- package/secure-payment-confirmation.idl +0 -7
- package/web-animations-2.idl +1 -0
- package/web-animations.idl +0 -1
- package/webcodecs.idl +4 -4
- package/webgpu.idl +0 -1
- package/webrtc-encoded-transform.idl +1 -0
- package/xhr.idl +1 -1
- package/EXT_clip_cull_distance.idl +0 -20
package/FedCM.idl
CHANGED
|
@@ -30,6 +30,7 @@ dictionary IdentityProviderAccount {
|
|
|
30
30
|
required USVString name;
|
|
31
31
|
required USVString email;
|
|
32
32
|
USVString given_name;
|
|
33
|
+
USVString picture;
|
|
33
34
|
sequence<USVString> approved_clients;
|
|
34
35
|
};
|
|
35
36
|
dictionary IdentityProviderAccountList {
|
|
@@ -63,19 +64,3 @@ dictionary IdentityProviderConfig {
|
|
|
63
64
|
required USVString clientId;
|
|
64
65
|
USVString nonce;
|
|
65
66
|
};
|
|
66
|
-
|
|
67
|
-
dictionary IdentityCredentialLogoutRPsRequest {
|
|
68
|
-
required USVString url;
|
|
69
|
-
required USVString accountId;
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
[Exposed=Window, SecureContext]
|
|
73
|
-
partial interface IdentityCredential {
|
|
74
|
-
static Promise<undefined> logoutRPs(sequence<IdentityCredentialLogoutRPsRequest> logoutRequests);
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
[Exposed=Window, SecureContext]
|
|
78
|
-
interface IdentityProvider {
|
|
79
|
-
static undefined login();
|
|
80
|
-
static undefined logout();
|
|
81
|
-
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: WebGL WEBGL_clip_cull_distance Extension Draft Specification (https://registry.khronos.org/webgl/extensions/WEBGL_clip_cull_distance/)
|
|
5
|
+
|
|
6
|
+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
|
|
7
|
+
interface WEBGL_clip_cull_distance {
|
|
8
|
+
const GLenum MAX_CLIP_DISTANCES_WEBGL = 0x0D32;
|
|
9
|
+
const GLenum MAX_CULL_DISTANCES_WEBGL = 0x82F9;
|
|
10
|
+
const GLenum MAX_COMBINED_CLIP_AND_CULL_DISTANCES_WEBGL = 0x82FA;
|
|
11
|
+
|
|
12
|
+
const GLenum CLIP_DISTANCE0_WEBGL = 0x3000;
|
|
13
|
+
const GLenum CLIP_DISTANCE1_WEBGL = 0x3001;
|
|
14
|
+
const GLenum CLIP_DISTANCE2_WEBGL = 0x3002;
|
|
15
|
+
const GLenum CLIP_DISTANCE3_WEBGL = 0x3003;
|
|
16
|
+
const GLenum CLIP_DISTANCE4_WEBGL = 0x3004;
|
|
17
|
+
const GLenum CLIP_DISTANCE5_WEBGL = 0x3005;
|
|
18
|
+
const GLenum CLIP_DISTANCE6_WEBGL = 0x3006;
|
|
19
|
+
const GLenum CLIP_DISTANCE7_WEBGL = 0x3007;
|
|
20
|
+
};
|
|
@@ -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: WebGL WEBGL_provoking_vertex Extension Specification (https://registry.khronos.org/webgl/extensions/WEBGL_provoking_vertex/)
|
|
5
|
+
|
|
6
|
+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
|
|
7
|
+
interface WEBGL_provoking_vertex {
|
|
8
|
+
const GLenum FIRST_VERTEX_CONVENTION_WEBGL = 0x8E4D;
|
|
9
|
+
const GLenum LAST_VERTEX_CONVENTION_WEBGL = 0x8E4E; // default
|
|
10
|
+
const GLenum PROVOKING_VERTEX_WEBGL = 0x8E4F;
|
|
11
|
+
|
|
12
|
+
undefined provokingVertexWEBGL(GLenum provokeMode);
|
|
13
|
+
};
|
package/contact-picker.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: Contact Picker API (https://w3c.github.io/contact-picker/
|
|
4
|
+
// Source: Contact Picker API (https://w3c.github.io/contact-picker/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
partial interface Navigator {
|
package/css-view-transitions.idl
CHANGED
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
// Source: CSS View Transitions Module Level 1 (https://drafts.csswg.org/css-view-transitions-1/)
|
|
5
5
|
|
|
6
6
|
partial interface Document {
|
|
7
|
-
ViewTransition startViewTransition(optional UpdateCallback?
|
|
7
|
+
ViewTransition startViewTransition(optional UpdateCallback? updateCallback = null);
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
callback UpdateCallback = Promise<any> ();
|
|
11
11
|
|
|
12
12
|
[Exposed=Window]
|
|
13
13
|
interface ViewTransition {
|
|
14
|
-
undefined skipTransition();
|
|
15
|
-
readonly attribute Promise<undefined> finished;
|
|
16
|
-
readonly attribute Promise<undefined> ready;
|
|
17
14
|
readonly attribute Promise<undefined> updateCallbackDone;
|
|
15
|
+
readonly attribute Promise<undefined> ready;
|
|
16
|
+
readonly attribute Promise<undefined> finished;
|
|
17
|
+
undefined skipTransition();
|
|
18
18
|
};
|
package/fetch.idl
CHANGED
|
@@ -12,6 +12,7 @@ interface Headers {
|
|
|
12
12
|
undefined append(ByteString name, ByteString value);
|
|
13
13
|
undefined delete(ByteString name);
|
|
14
14
|
ByteString? get(ByteString name);
|
|
15
|
+
sequence<ByteString> getSetCookie();
|
|
15
16
|
boolean has(ByteString name);
|
|
16
17
|
undefined set(ByteString name, ByteString value);
|
|
17
18
|
iterable<ByteString, ByteString>;
|
package/gpc-spec.idl
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Global Privacy Control (GPC) (https://privacycg.github.io/gpc-spec/)
|
|
5
|
+
|
|
6
|
+
interface mixin GlobalPrivacyControl {
|
|
7
|
+
readonly attribute boolean globalPrivacyControl;
|
|
8
|
+
};
|
|
9
|
+
Navigator includes GlobalPrivacyControl;
|
|
10
|
+
WorkerNavigator includes GlobalPrivacyControl;
|
package/html.idl
CHANGED
|
@@ -127,6 +127,12 @@ interface HTMLElement : Element {
|
|
|
127
127
|
[CEReactions] attribute [LegacyNullToEmptyString] DOMString outerText;
|
|
128
128
|
|
|
129
129
|
ElementInternals attachInternals();
|
|
130
|
+
|
|
131
|
+
// The popover API
|
|
132
|
+
undefined showPopover();
|
|
133
|
+
undefined hidePopover();
|
|
134
|
+
undefined togglePopover(optional boolean force);
|
|
135
|
+
[CEReactions] attribute DOMString? popover;
|
|
130
136
|
};
|
|
131
137
|
|
|
132
138
|
HTMLElement includes GlobalEventHandlers;
|
|
@@ -929,6 +935,7 @@ interface HTMLInputElement : HTMLElement {
|
|
|
929
935
|
|
|
930
936
|
// also has obsolete members
|
|
931
937
|
};
|
|
938
|
+
HTMLInputElement includes PopoverTargetElement;
|
|
932
939
|
|
|
933
940
|
[Exposed=Window]
|
|
934
941
|
interface HTMLButtonElement : HTMLElement {
|
|
@@ -954,6 +961,7 @@ interface HTMLButtonElement : HTMLElement {
|
|
|
954
961
|
|
|
955
962
|
readonly attribute NodeList labels;
|
|
956
963
|
};
|
|
964
|
+
HTMLButtonElement includes PopoverTargetElement;
|
|
957
965
|
|
|
958
966
|
[Exposed=Window]
|
|
959
967
|
interface HTMLSelectElement : HTMLElement {
|
|
@@ -1704,6 +1712,24 @@ dictionary DragEventInit : MouseEventInit {
|
|
|
1704
1712
|
DataTransfer? dataTransfer = null;
|
|
1705
1713
|
};
|
|
1706
1714
|
|
|
1715
|
+
interface mixin PopoverTargetElement {
|
|
1716
|
+
[CEReactions] attribute Element? popoverToggleTargetElement;
|
|
1717
|
+
[CEReactions] attribute Element? popoverHideTargetElement;
|
|
1718
|
+
[CEReactions] attribute Element? popoverShowTargetElement;
|
|
1719
|
+
};
|
|
1720
|
+
|
|
1721
|
+
[Exposed=Window]
|
|
1722
|
+
interface ToggleEvent : Event {
|
|
1723
|
+
constructor(DOMString type, optional ToggleEventInit eventInitDict = {});
|
|
1724
|
+
readonly attribute DOMString oldState;
|
|
1725
|
+
readonly attribute DOMString newState;
|
|
1726
|
+
};
|
|
1727
|
+
|
|
1728
|
+
dictionary ToggleEventInit : EventInit {
|
|
1729
|
+
DOMString oldState = "";
|
|
1730
|
+
DOMString newState = "";
|
|
1731
|
+
};
|
|
1732
|
+
|
|
1707
1733
|
[Global=Window,
|
|
1708
1734
|
Exposed=Window,
|
|
1709
1735
|
LegacyUnenumerableNamedProperties]
|
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: requestStorageAccessForOrigin API (https://privacycg.github.io/requestStorageAccessForOrigin/)
|
|
5
|
+
|
|
6
|
+
partial interface Document {
|
|
7
|
+
Promise<undefined> requestStorageAccessForOrigin(USVString origin);
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
dictionary TopLevelStorageAccessPermissionDescriptor : PermissionDescriptor {
|
|
11
|
+
USVString requestedOrigin = "";
|
|
12
|
+
};
|
package/web-animations-2.idl
CHANGED
package/web-animations.idl
CHANGED
package/webcodecs.idl
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// Source: WebCodecs (https://w3c.github.io/webcodecs/)
|
|
5
5
|
|
|
6
6
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
7
|
-
interface AudioDecoder {
|
|
7
|
+
interface AudioDecoder : EventTarget {
|
|
8
8
|
constructor(AudioDecoderInit init);
|
|
9
9
|
|
|
10
10
|
readonly attribute CodecState state;
|
|
@@ -28,7 +28,7 @@ dictionary AudioDecoderInit {
|
|
|
28
28
|
callback AudioDataOutputCallback = undefined(AudioData output);
|
|
29
29
|
|
|
30
30
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
31
|
-
interface VideoDecoder {
|
|
31
|
+
interface VideoDecoder : EventTarget {
|
|
32
32
|
constructor(VideoDecoderInit init);
|
|
33
33
|
|
|
34
34
|
readonly attribute CodecState state;
|
|
@@ -52,7 +52,7 @@ dictionary VideoDecoderInit {
|
|
|
52
52
|
callback VideoFrameOutputCallback = undefined(VideoFrame output);
|
|
53
53
|
|
|
54
54
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
55
|
-
interface AudioEncoder {
|
|
55
|
+
interface AudioEncoder : EventTarget {
|
|
56
56
|
constructor(AudioEncoderInit init);
|
|
57
57
|
|
|
58
58
|
readonly attribute CodecState state;
|
|
@@ -82,7 +82,7 @@ dictionary EncodedAudioChunkMetadata {
|
|
|
82
82
|
};
|
|
83
83
|
|
|
84
84
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
85
|
-
interface VideoEncoder {
|
|
85
|
+
interface VideoEncoder : EventTarget {
|
|
86
86
|
constructor(VideoEncoderInit init);
|
|
87
87
|
|
|
88
88
|
readonly attribute CodecState state;
|
package/webgpu.idl
CHANGED
package/xhr.idl
CHANGED
|
@@ -70,7 +70,7 @@ typedef (File or USVString) FormDataEntryValue;
|
|
|
70
70
|
|
|
71
71
|
[Exposed=(Window,Worker)]
|
|
72
72
|
interface FormData {
|
|
73
|
-
constructor(optional HTMLFormElement form);
|
|
73
|
+
constructor(optional HTMLFormElement form, optional HTMLElement? submitter = null);
|
|
74
74
|
|
|
75
75
|
undefined append(USVString name, USVString value);
|
|
76
76
|
undefined append(USVString name, Blob blobValue, optional USVString filename);
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: WebGL EXT_clip_cull_distance Extension Draft Specification (https://registry.khronos.org/webgl/extensions/EXT_clip_cull_distance/)
|
|
5
|
-
|
|
6
|
-
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
|
|
7
|
-
interface EXT_clip_cull_distance {
|
|
8
|
-
const GLenum MAX_CLIP_DISTANCES_EXT = 0x0D32;
|
|
9
|
-
const GLenum MAX_CULL_DISTANCES_EXT = 0x82F9;
|
|
10
|
-
const GLenum MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT = 0x82FA;
|
|
11
|
-
|
|
12
|
-
const GLenum CLIP_DISTANCE0_EXT = 0x3000;
|
|
13
|
-
const GLenum CLIP_DISTANCE1_EXT = 0x3001;
|
|
14
|
-
const GLenum CLIP_DISTANCE2_EXT = 0x3002;
|
|
15
|
-
const GLenum CLIP_DISTANCE3_EXT = 0x3003;
|
|
16
|
-
const GLenum CLIP_DISTANCE4_EXT = 0x3004;
|
|
17
|
-
const GLenum CLIP_DISTANCE5_EXT = 0x3005;
|
|
18
|
-
const GLenum CLIP_DISTANCE6_EXT = 0x3006;
|
|
19
|
-
const GLenum CLIP_DISTANCE7_EXT = 0x3007;
|
|
20
|
-
};
|