@webref/idl 3.34.3 → 3.34.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/navigation-timing.idl +1 -0
- package/package.json +1 -1
- package/scroll-animations.idl +2 -11
- package/streams.idl +2 -0
- package/webgpu.idl +1 -1
package/navigation-timing.idl
CHANGED
|
@@ -15,6 +15,7 @@ interface PerformanceNavigationTiming : PerformanceResourceTiming {
|
|
|
15
15
|
readonly attribute DOMHighResTimeStamp loadEventEnd;
|
|
16
16
|
readonly attribute NavigationTimingType type;
|
|
17
17
|
readonly attribute unsigned short redirectCount;
|
|
18
|
+
readonly attribute DOMHighResTimeStamp criticalCHRestart;
|
|
18
19
|
[Default] object toJSON();
|
|
19
20
|
};
|
|
20
21
|
|
package/package.json
CHANGED
package/scroll-animations.idl
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
enum ScrollAxis {
|
|
7
7
|
"block",
|
|
8
8
|
"inline",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"x",
|
|
10
|
+
"y"
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
dictionary ScrollTimelineOptions {
|
|
@@ -35,12 +35,3 @@ interface ViewTimeline : ScrollTimeline {
|
|
|
35
35
|
readonly attribute CSSNumericValue startOffset;
|
|
36
36
|
readonly attribute CSSNumericValue endOffset;
|
|
37
37
|
};
|
|
38
|
-
|
|
39
|
-
dictionary AnimationTimeOptions {
|
|
40
|
-
DOMString? range;
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
[Exposed=Window]
|
|
44
|
-
partial interface AnimationTimeline {
|
|
45
|
-
CSSNumericValue? getCurrentTime(optional AnimationTimeOptions options = {});
|
|
46
|
-
};
|
package/streams.idl
CHANGED
package/webgpu.idl
CHANGED
|
@@ -604,7 +604,7 @@ interface GPUCompilationInfo {
|
|
|
604
604
|
|
|
605
605
|
[Exposed=(Window, DedicatedWorker), SecureContext, Serializable]
|
|
606
606
|
interface GPUPipelineError : DOMException {
|
|
607
|
-
constructor(
|
|
607
|
+
constructor(optional DOMString message = "", GPUPipelineErrorInit options);
|
|
608
608
|
readonly attribute GPUPipelineErrorReason reason;
|
|
609
609
|
};
|
|
610
610
|
|