@webref/idl 3.44.3 → 3.45.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/html.idl +1 -0
- package/long-animation-frames.idl +54 -0
- package/longtasks.idl +0 -50
- package/mediacapture-streams.idl +0 -10
- package/package.json +1 -1
- package/permissions.idl +1 -1
- package/turtledove.idl +1 -0
- package/ua-client-hints.idl +1 -1
package/html.idl
CHANGED
|
@@ -123,6 +123,7 @@ interface HTMLElement : Element {
|
|
|
123
123
|
readonly attribute DOMString accessKeyLabel;
|
|
124
124
|
[CEReactions] attribute boolean draggable;
|
|
125
125
|
[CEReactions] attribute boolean spellcheck;
|
|
126
|
+
[CEReactions] attribute DOMString writingSuggestions;
|
|
126
127
|
[CEReactions] attribute DOMString autocapitalize;
|
|
127
128
|
|
|
128
129
|
[CEReactions] attribute [LegacyNullToEmptyString] DOMString innerText;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Long Animation Frames API (https://w3c.github.io/long-animation-frames/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
interface PerformanceLongAnimationFrameTiming : 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
|
+
|
|
14
|
+
readonly attribute DOMHighResTimeStamp renderStart;
|
|
15
|
+
readonly attribute DOMHighResTimeStamp styleAndLayoutStart;
|
|
16
|
+
readonly attribute DOMHighResTimeStamp blockingDuration;
|
|
17
|
+
readonly attribute DOMHighResTimeStamp firstUIEventTimestamp;
|
|
18
|
+
[SameObject] readonly attribute FrozenArray<PerformanceScriptTiming> scripts;
|
|
19
|
+
[Default] object toJSON();
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
enum ScriptInvokerType {
|
|
23
|
+
"classic-script",
|
|
24
|
+
"module-script",
|
|
25
|
+
"event-listener",
|
|
26
|
+
"user-callback",
|
|
27
|
+
"resolve-promise",
|
|
28
|
+
"reject-promise"
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
enum ScriptWindowAttribution {
|
|
32
|
+
"self", "descendant", "ancestor", "same-page", "other"
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
[Exposed=Window]
|
|
36
|
+
interface PerformanceScriptTiming : PerformanceEntry {
|
|
37
|
+
/* Overloading PerformanceEntry */
|
|
38
|
+
readonly attribute DOMHighResTimeStamp startTime;
|
|
39
|
+
readonly attribute DOMHighResTimeStamp duration;
|
|
40
|
+
readonly attribute DOMString name;
|
|
41
|
+
readonly attribute DOMString entryType;
|
|
42
|
+
|
|
43
|
+
readonly attribute ScriptInvokerType invokerType;
|
|
44
|
+
readonly attribute DOMString invoker;
|
|
45
|
+
readonly attribute DOMHighResTimeStamp executionStart;
|
|
46
|
+
readonly attribute DOMString sourceURL;
|
|
47
|
+
readonly attribute DOMString sourceFunctionName;
|
|
48
|
+
readonly attribute long long sourceCharPosition;
|
|
49
|
+
readonly attribute DOMHighResTimeStamp pauseDuration;
|
|
50
|
+
readonly attribute DOMHighResTimeStamp forcedStyleAndLayoutDuration;
|
|
51
|
+
readonly attribute Window? window;
|
|
52
|
+
readonly attribute ScriptWindowAttribution windowAttribution;
|
|
53
|
+
[Default] object toJSON();
|
|
54
|
+
};
|
package/longtasks.idl
CHANGED
|
@@ -29,53 +29,3 @@ interface TaskAttributionTiming : PerformanceEntry {
|
|
|
29
29
|
readonly attribute DOMString containerName;
|
|
30
30
|
[Default] object toJSON();
|
|
31
31
|
};
|
|
32
|
-
|
|
33
|
-
[Exposed=Window]
|
|
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
|
-
|
|
41
|
-
readonly attribute DOMHighResTimeStamp renderStart;
|
|
42
|
-
readonly attribute DOMHighResTimeStamp styleAndLayoutStart;
|
|
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 ScriptInvokerType {
|
|
50
|
-
"classic-script",
|
|
51
|
-
"module-script",
|
|
52
|
-
"event-listener",
|
|
53
|
-
"user-callback",
|
|
54
|
-
"resolve-promise",
|
|
55
|
-
"reject-promise"
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
enum ScriptWindowAttribution {
|
|
59
|
-
"self", "descendant", "ancestor", "same-page", "other"
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
[Exposed=Window]
|
|
63
|
-
interface PerformanceScriptTiming : PerformanceEntry {
|
|
64
|
-
/* Overloading PerformanceEntry */
|
|
65
|
-
readonly attribute DOMHighResTimeStamp startTime;
|
|
66
|
-
readonly attribute DOMHighResTimeStamp duration;
|
|
67
|
-
readonly attribute DOMString name;
|
|
68
|
-
readonly attribute DOMString entryType;
|
|
69
|
-
|
|
70
|
-
readonly attribute ScriptInvokerType invokerType;
|
|
71
|
-
readonly attribute DOMString invoker;
|
|
72
|
-
readonly attribute DOMHighResTimeStamp executionStart;
|
|
73
|
-
readonly attribute DOMString sourceURL;
|
|
74
|
-
readonly attribute DOMString sourceFunctionName;
|
|
75
|
-
readonly attribute long long sourceCharPosition;
|
|
76
|
-
readonly attribute DOMHighResTimeStamp pauseDuration;
|
|
77
|
-
readonly attribute DOMHighResTimeStamp forcedStyleAndLayoutDuration;
|
|
78
|
-
readonly attribute Window? window;
|
|
79
|
-
readonly attribute ScriptWindowAttribution windowAttribution;
|
|
80
|
-
[Default] object toJSON();
|
|
81
|
-
};
|
package/mediacapture-streams.idl
CHANGED
|
@@ -189,16 +189,6 @@ dictionary MediaStreamConstraints {
|
|
|
189
189
|
(boolean or MediaTrackConstraints) audio = false;
|
|
190
190
|
};
|
|
191
191
|
|
|
192
|
-
partial interface Navigator {
|
|
193
|
-
[SecureContext] undefined getUserMedia(MediaStreamConstraints constraints,
|
|
194
|
-
NavigatorUserMediaSuccessCallback successCallback,
|
|
195
|
-
NavigatorUserMediaErrorCallback errorCallback);
|
|
196
|
-
};
|
|
197
|
-
|
|
198
|
-
callback NavigatorUserMediaSuccessCallback = undefined (MediaStream stream);
|
|
199
|
-
|
|
200
|
-
callback NavigatorUserMediaErrorCallback = undefined (DOMException error);
|
|
201
|
-
|
|
202
192
|
dictionary DoubleRange {
|
|
203
193
|
double max;
|
|
204
194
|
double min;
|
package/package.json
CHANGED
package/permissions.idl
CHANGED
package/turtledove.idl
CHANGED
|
@@ -74,6 +74,7 @@ dictionary AuctionAdConfig {
|
|
|
74
74
|
sequence<record<DOMString, DOMString>> allSlotsRequestedSizes;
|
|
75
75
|
Promise<any> sellerSignals;
|
|
76
76
|
Promise<DOMString> directFromSellerSignalsHeaderAdSlot;
|
|
77
|
+
Promise<record<USVString, USVString>> deprecatedRenderURLReplacements;
|
|
77
78
|
unsigned long long sellerTimeout;
|
|
78
79
|
unsigned short sellerExperimentGroupId;
|
|
79
80
|
USVString sellerCurrency;
|
package/ua-client-hints.idl
CHANGED
|
@@ -12,7 +12,7 @@ dictionary UADataValues {
|
|
|
12
12
|
DOMString architecture;
|
|
13
13
|
DOMString bitness;
|
|
14
14
|
sequence<NavigatorUABrandVersion> brands;
|
|
15
|
-
sequence<DOMString>
|
|
15
|
+
sequence<DOMString> formFactors;
|
|
16
16
|
sequence<NavigatorUABrandVersion> fullVersionList;
|
|
17
17
|
DOMString model;
|
|
18
18
|
boolean mobile;
|