@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.
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.34.3",
4
+ "version": "3.34.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -6,8 +6,8 @@
6
6
  enum ScrollAxis {
7
7
  "block",
8
8
  "inline",
9
- "horizontal",
10
- "vertical"
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
@@ -7,6 +7,8 @@
7
7
  interface ReadableStream {
8
8
  constructor(optional object underlyingSource, optional QueuingStrategy strategy = {});
9
9
 
10
+ static ReadableStream from(any asyncIterable);
11
+
10
12
  readonly attribute boolean locked;
11
13
 
12
14
  Promise<undefined> cancel(optional any reason);
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((DOMString or undefined) message, GPUPipelineErrorInit options);
607
+ constructor(optional DOMString message = "", GPUPipelineErrorInit options);
608
608
  readonly attribute GPUPipelineErrorReason reason;
609
609
  };
610
610