@webref/idl 3.22.5 → 3.23.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/SVG.idl +0 -1
- package/compute-pressure.idl +1 -1
- package/contact-api.idl +1 -1
- package/html.idl +3 -8
- package/mathml-core.idl +0 -1
- package/package.json +1 -1
- package/webcodecs-flac-codec-registration.idl +13 -0
- package/webgpu.idl +15 -1
package/SVG.idl
CHANGED
package/compute-pressure.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: Compute Pressure Level 1 (https://
|
|
4
|
+
// Source: Compute Pressure Level 1 (https://w3c.github.io/compute-pressure/)
|
|
5
5
|
|
|
6
6
|
enum PressureState { "nominal", "fair", "serious", "critical" };
|
|
7
7
|
|
package/contact-api.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: Contact Picker API (https://w3c.github.io/contact-
|
|
4
|
+
// Source: Contact Picker API (https://w3c.github.io/contact-picker/spec/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
partial interface Navigator {
|
package/html.idl
CHANGED
|
@@ -98,7 +98,6 @@ partial interface Document {
|
|
|
98
98
|
// also has obsolete members
|
|
99
99
|
};
|
|
100
100
|
Document includes GlobalEventHandlers;
|
|
101
|
-
Document includes DocumentAndElementEventHandlers;
|
|
102
101
|
|
|
103
102
|
partial interface mixin DocumentOrShadowRoot {
|
|
104
103
|
readonly attribute Element? activeElement;
|
|
@@ -131,7 +130,6 @@ interface HTMLElement : Element {
|
|
|
131
130
|
};
|
|
132
131
|
|
|
133
132
|
HTMLElement includes GlobalEventHandlers;
|
|
134
|
-
HTMLElement includes DocumentAndElementEventHandlers;
|
|
135
133
|
HTMLElement includes ElementContentEditable;
|
|
136
134
|
HTMLElement includes HTMLOrSVGElement;
|
|
137
135
|
|
|
@@ -1905,7 +1903,9 @@ interface mixin GlobalEventHandlers {
|
|
|
1905
1903
|
attribute EventHandler oncontextlost;
|
|
1906
1904
|
attribute EventHandler oncontextmenu;
|
|
1907
1905
|
attribute EventHandler oncontextrestored;
|
|
1906
|
+
attribute EventHandler oncopy;
|
|
1908
1907
|
attribute EventHandler oncuechange;
|
|
1908
|
+
attribute EventHandler oncut;
|
|
1909
1909
|
attribute EventHandler ondblclick;
|
|
1910
1910
|
attribute EventHandler ondrag;
|
|
1911
1911
|
attribute EventHandler ondragend;
|
|
@@ -1936,6 +1936,7 @@ interface mixin GlobalEventHandlers {
|
|
|
1936
1936
|
attribute EventHandler onmouseout;
|
|
1937
1937
|
attribute EventHandler onmouseover;
|
|
1938
1938
|
attribute EventHandler onmouseup;
|
|
1939
|
+
attribute EventHandler onpaste;
|
|
1939
1940
|
attribute EventHandler onpause;
|
|
1940
1941
|
attribute EventHandler onplay;
|
|
1941
1942
|
attribute EventHandler onplaying;
|
|
@@ -1983,12 +1984,6 @@ interface mixin WindowEventHandlers {
|
|
|
1983
1984
|
attribute EventHandler onunload;
|
|
1984
1985
|
};
|
|
1985
1986
|
|
|
1986
|
-
interface mixin DocumentAndElementEventHandlers {
|
|
1987
|
-
attribute EventHandler oncopy;
|
|
1988
|
-
attribute EventHandler oncut;
|
|
1989
|
-
attribute EventHandler onpaste;
|
|
1990
|
-
};
|
|
1991
|
-
|
|
1992
1987
|
typedef (DOMString or Function) TimerHandler;
|
|
1993
1988
|
|
|
1994
1989
|
interface mixin WindowOrWorkerGlobalScope {
|
package/mathml-core.idl
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: FLAC WebCodecs Registration (https://w3c.github.io/webcodecs/flac_codec_registration.html)
|
|
5
|
+
|
|
6
|
+
partial dictionary AudioEncoderConfig {
|
|
7
|
+
FlacEncoderConfig flac;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
dictionary FlacEncoderConfig {
|
|
11
|
+
[EnforceRange] unsigned long blockSize = 0;
|
|
12
|
+
[EnforceRange] unsigned long compressLevel = 5;
|
|
13
|
+
};
|
package/webgpu.idl
CHANGED
|
@@ -106,7 +106,6 @@ enum GPUFeatureName {
|
|
|
106
106
|
"timestamp-query",
|
|
107
107
|
"indirect-first-instance",
|
|
108
108
|
"shader-f16",
|
|
109
|
-
"bgra8unorm-storage",
|
|
110
109
|
"rg11b10ufloat-renderable"
|
|
111
110
|
};
|
|
112
111
|
|
|
@@ -585,6 +584,21 @@ interface GPUCompilationInfo {
|
|
|
585
584
|
readonly attribute FrozenArray<GPUCompilationMessage> messages;
|
|
586
585
|
};
|
|
587
586
|
|
|
587
|
+
[Exposed=(Window, DedicatedWorker), SecureContext, Serializable]
|
|
588
|
+
interface GPUPipelineError : DOMException {
|
|
589
|
+
constructor(DOMString message, GPUPipelineErrorInit options);
|
|
590
|
+
readonly attribute GPUPipelineErrorReason reason;
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
dictionary GPUPipelineErrorInit {
|
|
594
|
+
required GPUPipelineErrorReason reason;
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
enum GPUPipelineErrorReason {
|
|
598
|
+
"validation",
|
|
599
|
+
"internal"
|
|
600
|
+
};
|
|
601
|
+
|
|
588
602
|
enum GPUAutoLayoutMode {
|
|
589
603
|
"auto"
|
|
590
604
|
};
|