@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 +0 -2
- package/package.json +1 -1
- package/priority-hints.idl +4 -4
- package/streams.idl +3 -8
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
package/priority-hints.idl
CHANGED
|
@@ -14,17 +14,17 @@ partial dictionary RequestInit {
|
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
partial interface HTMLImageElement {
|
|
17
|
-
[CEReactions] attribute DOMString
|
|
17
|
+
[CEReactions] attribute DOMString fetchPriority;
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
partial interface HTMLLinkElement {
|
|
21
|
-
[CEReactions] attribute DOMString
|
|
21
|
+
[CEReactions] attribute DOMString fetchPriority;
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
partial interface HTMLScriptElement {
|
|
25
|
-
[CEReactions] attribute DOMString
|
|
25
|
+
[CEReactions] attribute DOMString fetchPriority;
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
partial interface HTMLIFrameElement {
|
|
29
|
-
[CEReactions] attribute DOMString
|
|
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<
|
|
71
|
+
Promise<ReadableStreamReadResult> read();
|
|
72
72
|
undefined releaseLock();
|
|
73
73
|
};
|
|
74
74
|
ReadableStreamDefaultReader includes ReadableStreamGenericReader;
|
|
75
75
|
|
|
76
|
-
dictionary
|
|
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<
|
|
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;
|