@webref/idl 3.7.1 → 3.7.2

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/css-typed-om.idl CHANGED
@@ -345,8 +345,6 @@ interface CSSImageValue : CSSStyleValue {
345
345
 
346
346
  [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
347
347
  interface CSSColorValue : CSSStyleValue {
348
- readonly attribute CSSKeywordValue colorSpace;
349
- CSSColorValue to(CSSKeywordish colorSpace);
350
348
  [Exposed=Window] static (CSSColorValue or CSSStyleValue) parse(USVString cssText);
351
349
  };
352
350
 
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.7.1",
4
+ "version": "3.7.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -14,17 +14,17 @@ partial dictionary RequestInit {
14
14
  };
15
15
 
16
16
  partial interface HTMLImageElement {
17
- [CEReactions] attribute DOMString fetchpriority;
17
+ [CEReactions] attribute DOMString fetchPriority;
18
18
  };
19
19
 
20
20
  partial interface HTMLLinkElement {
21
- [CEReactions] attribute DOMString fetchpriority;
21
+ [CEReactions] attribute DOMString fetchPriority;
22
22
  };
23
23
 
24
24
  partial interface HTMLScriptElement {
25
- [CEReactions] attribute DOMString fetchpriority;
25
+ [CEReactions] attribute DOMString fetchPriority;
26
26
  };
27
27
 
28
28
  partial interface HTMLIFrameElement {
29
- [CEReactions] attribute DOMString fetchpriority;
29
+ [CEReactions] attribute DOMString fetchPriority;
30
30
  };
package/streams.idl CHANGED
@@ -68,12 +68,12 @@ interface mixin ReadableStreamGenericReader {
68
68
  interface ReadableStreamDefaultReader {
69
69
  constructor(ReadableStream stream);
70
70
 
71
- Promise<ReadableStreamDefaultReadResult> read();
71
+ Promise<ReadableStreamReadResult> read();
72
72
  undefined releaseLock();
73
73
  };
74
74
  ReadableStreamDefaultReader includes ReadableStreamGenericReader;
75
75
 
76
- dictionary ReadableStreamDefaultReadResult {
76
+ dictionary ReadableStreamReadResult {
77
77
  any value;
78
78
  boolean done;
79
79
  };
@@ -82,16 +82,11 @@ dictionary ReadableStreamDefaultReadResult {
82
82
  interface ReadableStreamBYOBReader {
83
83
  constructor(ReadableStream stream);
84
84
 
85
- Promise<ReadableStreamBYOBReadResult> read(ArrayBufferView view);
85
+ Promise<ReadableStreamReadResult> read(ArrayBufferView view);
86
86
  undefined releaseLock();
87
87
  };
88
88
  ReadableStreamBYOBReader includes ReadableStreamGenericReader;
89
89
 
90
- dictionary ReadableStreamBYOBReadResult {
91
- (ArrayBufferView or undefined) value;
92
- boolean done;
93
- };
94
-
95
90
  [Exposed=*]
96
91
  interface ReadableStreamDefaultController {
97
92
  readonly attribute unrestricted double? desiredSize;