@webref/idl 3.69.1 → 3.70.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/cookiestore.idl CHANGED
@@ -41,6 +41,7 @@ dictionary CookieInit {
41
41
  USVString path = "/";
42
42
  CookieSameSite sameSite = "strict";
43
43
  boolean partitioned = false;
44
+ long long? maxAge = null;
44
45
  };
45
46
 
46
47
  dictionary CookieStoreDeleteOptions {
@@ -5,6 +5,7 @@
5
5
 
6
6
  partial interface CSSRule {
7
7
  const unsigned short SUPPORTS_RULE = 12;
8
+
8
9
  };
9
10
 
10
11
  [Exposed=Window]
package/css-fonts.idl CHANGED
@@ -3,7 +3,8 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: CSS Fonts Module Level 4 (https://drafts.csswg.org/css-fonts-4/)
5
5
 
6
- partial interface CSSRule { const unsigned short FONT_FEATURE_VALUES_RULE = 14;
6
+ partial interface CSSRule {
7
+ const unsigned short FONT_FEATURE_VALUES_RULE = 14;
7
8
  };
8
9
  [Exposed=Window]
9
10
  interface CSSFontFeatureValuesRule : CSSRule {
@@ -24,7 +25,8 @@ interface CSSFontFeatureValuesMap {
24
25
  (unsigned long or sequence<unsigned long>) values);
25
26
  };
26
27
 
27
- [Exposed=Window]interface CSSFontPaletteValuesRule : CSSRule {
28
+ [Exposed=Window]
29
+ interface CSSFontPaletteValuesRule : CSSRule {
28
30
  readonly attribute CSSOMString name;
29
31
  readonly attribute CSSOMString fontFamily;
30
32
  readonly attribute CSSOMString basePalette;
package/css-masking.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: CSS Masking Module Level 1 (https://drafts.fxtf.org/css-masking-1/)
4
+ // Source: CSS Masking Module Level 1 (https://drafts.csswg.org/css-masking-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface SVGClipPathElement : SVGElement {
package/device-memory.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: Device Memory (https://www.w3.org/TR/device-memory/)
4
+ // Source: Device Memory API (https://www.w3.org/TR/device-memory/)
5
5
 
6
6
  [
7
7
  SecureContext,
package/fetch.idl CHANGED
@@ -85,7 +85,8 @@ enum RequestRedirect { "follow", "error", "manual" };
85
85
  enum RequestDuplex { "half" };
86
86
  enum RequestPriority { "high", "low", "auto" };
87
87
 
88
- [Exposed=(Window,Worker)]interface Response {
88
+ [Exposed=(Window,Worker)]
89
+ interface Response {
89
90
  constructor(optional BodyInit? body = null, optional ResponseInit init = {});
90
91
 
91
92
  [NewObject] static Response error();
@@ -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: Filter Effects Module Level 1 (https://drafts.fxtf.org/filter-effects-1/)
4
+ // Source: Filter Effects Module Level 1 (https://drafts.csswg.org/filter-effects-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface SVGFilterElement : SVGElement {
package/geometry.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: Geometry Interfaces Module Level 1 (https://drafts.fxtf.org/geometry-1/)
4
+ // Source: Geometry Interfaces Module Level 1 (https://drafts.csswg.org/geometry/)
5
5
 
6
6
  [Exposed=(Window,Worker),
7
7
  Serializable]
package/html.idl CHANGED
@@ -1624,7 +1624,7 @@ interface CustomElementRegistry {
1624
1624
  DOMString? getName(CustomElementConstructor constructor);
1625
1625
  Promise<CustomElementConstructor> whenDefined(DOMString name);
1626
1626
  [CEReactions] undefined upgrade(Node root);
1627
- undefined initialize(Node root);
1627
+ [CEReactions] undefined initialize(Node root);
1628
1628
  };
1629
1629
 
1630
1630
  callback CustomElementConstructor = HTMLElement ();
@@ -1807,6 +1807,18 @@ interface mixin PopoverTargetAttributes {
1807
1807
  [CEReactions] attribute DOMString popoverTargetAction;
1808
1808
  };
1809
1809
 
1810
+ [Exposed=*]
1811
+ interface Origin {
1812
+ constructor();
1813
+
1814
+ static Origin from(any value);
1815
+
1816
+ readonly attribute boolean opaque;
1817
+
1818
+ boolean isSameOrigin(Origin other);
1819
+ boolean isSameSite(Origin other);
1820
+ };
1821
+
1810
1822
  [Global=Window,
1811
1823
  Exposed=Window,
1812
1824
  LegacyUnenumerableNamedProperties]
@@ -1985,6 +1997,7 @@ interface NavigationHistoryEntry : EventTarget {
1985
1997
  interface NavigationTransition {
1986
1998
  readonly attribute NavigationType navigationType;
1987
1999
  readonly attribute NavigationHistoryEntry from;
2000
+ readonly attribute NavigationDestination to;
1988
2001
  readonly attribute Promise<undefined> committed;
1989
2002
  readonly attribute Promise<undefined> finished;
1990
2003
  };
@@ -2052,6 +2065,7 @@ callback NavigationInterceptHandler = Promise<undefined> ();
2052
2065
  [Exposed=Window]
2053
2066
  interface NavigationPrecommitController {
2054
2067
  undefined redirect(USVString url, optional NavigationNavigateOptions options = {});
2068
+ undefined addHandler(NavigationInterceptHandler handler);
2055
2069
  };
2056
2070
 
2057
2071
  callback NavigationPrecommitHandler = Promise<undefined> (NavigationPrecommitController controller);
@@ -17,6 +17,7 @@ interface PerformanceNavigationTiming : PerformanceResourceTiming {
17
17
  readonly attribute unsigned short redirectCount;
18
18
  readonly attribute DOMHighResTimeStamp criticalCHRestart;
19
19
  readonly attribute NotRestoredReasons? notRestoredReasons;
20
+ readonly attribute PerformanceTimingConfidence confidence;
20
21
  [Default] object toJSON();
21
22
  };
22
23
 
@@ -26,6 +27,18 @@ enum NavigationTimingType {
26
27
  "back_forward"
27
28
  };
28
29
 
30
+ [Exposed=Window]
31
+ interface PerformanceTimingConfidence {
32
+ readonly attribute double randomizedTriggerRate;
33
+ readonly attribute PerformanceTimingConfidenceValue value;
34
+ object toJSON();
35
+ };
36
+
37
+ enum PerformanceTimingConfidenceValue {
38
+ "high",
39
+ "low"
40
+ };
41
+
29
42
  [Exposed=Window]
30
43
  interface PerformanceTiming {
31
44
  readonly attribute unsigned long long navigationStart;
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.69.1",
4
+ "version": "3.70.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -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: Pointer-driven Animations (https://drafts.csswg.org/pointer-animations-1/)
4
+ // Source: Pointer-driven Animations Module Level 1 (https://drafts.csswg.org/pointer-animations-1/)
5
5
 
6
6
  enum PointerAxis {
7
7
  "block",
@@ -22,6 +22,10 @@ interface PerformanceResourceTiming : PerformanceEntry {
22
22
  readonly attribute DOMHighResTimeStamp firstInterimResponseStart;
23
23
  readonly attribute DOMHighResTimeStamp responseStart;
24
24
  readonly attribute DOMHighResTimeStamp responseEnd;
25
+ readonly attribute DOMHighResTimeStamp workerRouterEvaluationStart;
26
+ readonly attribute DOMHighResTimeStamp workerCacheLookupStart;
27
+ readonly attribute DOMString workerMatchedRouterSource;
28
+ readonly attribute DOMString workerFinalRouterSource;
25
29
  readonly attribute unsigned long long transferSize;
26
30
  readonly attribute unsigned long long encodedBodySize;
27
31
  readonly attribute unsigned long long decodedBodySize;
package/webtransport.idl CHANGED
@@ -74,7 +74,7 @@ dictionary WebTransportOptions {
74
74
  [EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null;
75
75
  [EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null;
76
76
  sequence<DOMString> protocols = [];
77
- DatagramsReadableMode datagramsReadableMode;
77
+ ReadableStreamType datagramsReadableType;
78
78
  };
79
79
 
80
80
  enum WebTransportCongestionControl {
@@ -83,8 +83,6 @@ enum WebTransportCongestionControl {
83
83
  "low-latency",
84
84
  };
85
85
 
86
- enum DatagramsReadableMode { "bytes" };
87
-
88
86
  dictionary WebTransportCloseInfo {
89
87
  unsigned long closeCode = 0;
90
88
  USVString reason = "";
@@ -101,6 +99,8 @@ dictionary WebTransportSendStreamOptions : WebTransportSendOptions {
101
99
 
102
100
  dictionary WebTransportConnectionStats {
103
101
  unsigned long long bytesSent;
102
+ unsigned long long bytesSentOverhead;
103
+ unsigned long long bytesAcknowledged;
104
104
  unsigned long long packetsSent;
105
105
  unsigned long long bytesLost;
106
106
  unsigned long long packetsLost;