@webref/idl 3.42.3 → 3.42.4
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 +2 -0
- package/longtasks.idl +42 -0
- package/package.json +1 -1
- package/wai-aria.idl +2 -0
- package/webgpu.idl +1 -1
- package/webidl.idl +1 -1
package/FedCM.idl
CHANGED
|
@@ -56,6 +56,7 @@ dictionary IdentityProviderConfig {
|
|
|
56
56
|
dictionary IdentityProviderRequestOptions : IdentityProviderConfig {
|
|
57
57
|
USVString nonce;
|
|
58
58
|
DOMString loginHint;
|
|
59
|
+
DOMString domainHint;
|
|
59
60
|
};
|
|
60
61
|
|
|
61
62
|
dictionary IdentityProviderWellKnown {
|
|
@@ -91,6 +92,7 @@ dictionary IdentityProviderAccount {
|
|
|
91
92
|
USVString picture;
|
|
92
93
|
sequence<USVString> approved_clients;
|
|
93
94
|
sequence<DOMString> login_hints;
|
|
95
|
+
sequence<DOMString> domain_hints;
|
|
94
96
|
};
|
|
95
97
|
dictionary IdentityProviderAccountList {
|
|
96
98
|
sequence<IdentityProviderAccount> accounts;
|
package/longtasks.idl
CHANGED
|
@@ -5,12 +5,24 @@
|
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface PerformanceLongTaskTiming : PerformanceEntry {
|
|
8
|
+
/* Overloading PerformanceEntry */
|
|
9
|
+
readonly attribute DOMHighResTimeStamp startTime;
|
|
10
|
+
readonly attribute DOMHighResTimeStamp duration;
|
|
11
|
+
readonly attribute DOMString name;
|
|
12
|
+
readonly attribute DOMString entryType;
|
|
13
|
+
|
|
8
14
|
readonly attribute FrozenArray<TaskAttributionTiming> attribution;
|
|
9
15
|
[Default] object toJSON();
|
|
10
16
|
};
|
|
11
17
|
|
|
12
18
|
[Exposed=Window]
|
|
13
19
|
interface TaskAttributionTiming : PerformanceEntry {
|
|
20
|
+
/* Overloading PerformanceEntry */
|
|
21
|
+
readonly attribute DOMHighResTimeStamp startTime;
|
|
22
|
+
readonly attribute DOMHighResTimeStamp duration;
|
|
23
|
+
readonly attribute DOMString name;
|
|
24
|
+
readonly attribute DOMString entryType;
|
|
25
|
+
|
|
14
26
|
readonly attribute DOMString containerType;
|
|
15
27
|
readonly attribute DOMString containerSrc;
|
|
16
28
|
readonly attribute DOMString containerId;
|
|
@@ -20,9 +32,39 @@ interface TaskAttributionTiming : PerformanceEntry {
|
|
|
20
32
|
|
|
21
33
|
[Exposed=Window]
|
|
22
34
|
interface PerformanceLongAnimationFrameTiming : PerformanceEntry {
|
|
35
|
+
/* Overloading PerformanceEntry */
|
|
36
|
+
readonly attribute DOMHighResTimeStamp startTime;
|
|
37
|
+
readonly attribute DOMHighResTimeStamp duration;
|
|
38
|
+
readonly attribute DOMString name;
|
|
39
|
+
readonly attribute DOMString entryType;
|
|
40
|
+
|
|
23
41
|
readonly attribute DOMHighResTimeStamp renderStart;
|
|
24
42
|
readonly attribute DOMHighResTimeStamp styleAndLayoutStart;
|
|
25
43
|
readonly attribute DOMHighResTimeStamp blockingDuration;
|
|
44
|
+
readonly attribute DOMHighResTimeStamp firstUIEventTimestamp;
|
|
45
|
+
[SameObject] readonly attribute FrozenArray<PerformanceScriptTiming> scripts;
|
|
46
|
+
[Default] object toJSON();
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
enum ScriptTimingType {
|
|
50
|
+
"classic-script",
|
|
51
|
+
"module-script",
|
|
52
|
+
"event-listener",
|
|
53
|
+
"user-callback",
|
|
54
|
+
"resolve-promise",
|
|
55
|
+
"reject-promise"
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
[Exposed=Window]
|
|
59
|
+
interface PerformanceScriptTiming : PerformanceEntry {
|
|
60
|
+
/* Overloading PerformanceEntry */
|
|
61
|
+
readonly attribute DOMHighResTimeStamp startTime;
|
|
62
|
+
readonly attribute DOMHighResTimeStamp duration;
|
|
63
|
+
readonly attribute DOMString name;
|
|
64
|
+
readonly attribute DOMString entryType;
|
|
26
65
|
|
|
66
|
+
readonly attribute ScriptTimingType type;
|
|
67
|
+
readonly attribute DOMHighResTimeStamp executionStart;
|
|
68
|
+
readonly attribute DOMString sourceLocation;
|
|
27
69
|
[Default] object toJSON();
|
|
28
70
|
};
|
package/package.json
CHANGED
package/wai-aria.idl
CHANGED
|
@@ -8,6 +8,8 @@ interface mixin ARIAMixin {
|
|
|
8
8
|
[CEReactions] attribute Element? ariaActiveDescendantElement;
|
|
9
9
|
[CEReactions] attribute DOMString? ariaAtomic;
|
|
10
10
|
[CEReactions] attribute DOMString? ariaAutoComplete;
|
|
11
|
+
[CEReactions] attribute DOMString? ariaBrailleLabel;
|
|
12
|
+
[CEReactions] attribute DOMString? ariaBrailleRoleDescription;
|
|
11
13
|
[CEReactions] attribute DOMString? ariaBusy;
|
|
12
14
|
[CEReactions] attribute DOMString? ariaChecked;
|
|
13
15
|
[CEReactions] attribute DOMString? ariaColCount;
|
package/webgpu.idl
CHANGED
|
@@ -640,7 +640,7 @@ dictionary GPUProgrammableStage {
|
|
|
640
640
|
record<USVString, GPUPipelineConstantValue> constants;
|
|
641
641
|
};
|
|
642
642
|
|
|
643
|
-
typedef double GPUPipelineConstantValue; // May represent WGSL
|
|
643
|
+
typedef double GPUPipelineConstantValue; // May represent WGSL's bool, f32, i32, u32, and f16 if enabled.
|
|
644
644
|
|
|
645
645
|
[Exposed=(Window, DedicatedWorker), SecureContext]
|
|
646
646
|
interface GPUComputePipeline {
|
package/webidl.idl
CHANGED
|
@@ -12,7 +12,7 @@ typedef (ArrayBufferView or ArrayBuffer) BufferSource;
|
|
|
12
12
|
typedef (ArrayBuffer or SharedArrayBuffer or [AllowShared] ArrayBufferView) AllowSharedBufferSource;
|
|
13
13
|
[Exposed=*,
|
|
14
14
|
Serializable]
|
|
15
|
-
interface DOMException { // but see below note about
|
|
15
|
+
interface DOMException { // but see below note about JavaScript binding
|
|
16
16
|
constructor(optional DOMString message = "", optional DOMString name = "Error");
|
|
17
17
|
readonly attribute DOMString name;
|
|
18
18
|
readonly attribute DOMString message;
|