@webref/idl 2.12.1 → 3.0.0
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/autoplay.idl +1 -1
- package/compression.idl +2 -2
- package/compute-pressure.idl +6 -6
- package/local-font-access.idl +0 -5
- package/package.json +1 -1
- package/ua-client-hints.idl +1 -0
package/autoplay.idl
CHANGED
package/compression.idl
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: Compression Streams (https://wicg.github.io/compression/)
|
|
5
5
|
|
|
6
|
-
[Exposed
|
|
6
|
+
[Exposed=*]
|
|
7
7
|
interface CompressionStream {
|
|
8
8
|
constructor(DOMString format);
|
|
9
9
|
};
|
|
10
10
|
CompressionStream includes GenericTransformStream;
|
|
11
11
|
|
|
12
|
-
[Exposed
|
|
12
|
+
[Exposed=*]
|
|
13
13
|
interface DecompressionStream {
|
|
14
14
|
constructor(DOMString format);
|
|
15
15
|
};
|
package/compute-pressure.idl
CHANGED
|
@@ -8,14 +8,14 @@ callback ComputePressureUpdateCallback = undefined (
|
|
|
8
8
|
ComputePressureObserver observer
|
|
9
9
|
);
|
|
10
10
|
|
|
11
|
+
enum ComputePressureTarget { "cpu" };
|
|
12
|
+
|
|
11
13
|
[Exposed=Window]
|
|
12
14
|
interface ComputePressureObserver {
|
|
13
|
-
constructor(
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
);
|
|
17
|
-
undefined observe();
|
|
18
|
-
undefined unobserve();
|
|
15
|
+
constructor(ComputePressureUpdateCallback callback);
|
|
16
|
+
undefined observe(ComputePressureTarget target, optional ComputePressureObserverOptions options = {});
|
|
17
|
+
undefined unobserve(ComputePressureTarget target);
|
|
18
|
+
undefined disconnect();
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
dictionary ComputePressureEntry {
|
package/local-font-access.idl
CHANGED
|
@@ -28,9 +28,4 @@ interface FontMetadata {
|
|
|
28
28
|
readonly attribute USVString fullName;
|
|
29
29
|
readonly attribute USVString family;
|
|
30
30
|
readonly attribute USVString style;
|
|
31
|
-
|
|
32
|
-
// Metrics
|
|
33
|
-
readonly attribute boolean italic;
|
|
34
|
-
readonly attribute float stretch;
|
|
35
|
-
readonly attribute float weight;
|
|
36
31
|
};
|
package/package.json
CHANGED
package/ua-client-hints.idl
CHANGED