@webref/idl 3.34.1 → 3.34.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/fenced-frame.idl +1 -1
- package/package.json +2 -2
- package/permissions-policy.idl +1 -0
- package/webtransport.idl +3 -2
package/fenced-frame.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: Fenced
|
|
4
|
+
// Source: Fenced Frame (https://wicg.github.io/fenced-frame/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface HTMLFencedFrameElement : HTMLElement {
|
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.34.
|
|
4
|
+
"version": "3.34.2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/w3c/webref.git"
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"main": "index.js",
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"webidl2": "^24.
|
|
15
|
+
"webidl2": "^24.3.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
package/permissions-policy.idl
CHANGED
|
@@ -18,6 +18,7 @@ partial interface Document {
|
|
|
18
18
|
partial interface HTMLIFrameElement {
|
|
19
19
|
[SameObject] readonly attribute PermissionsPolicy permissionsPolicy;
|
|
20
20
|
};
|
|
21
|
+
|
|
21
22
|
[Exposed=Window]
|
|
22
23
|
interface PermissionsPolicyViolationReportBody : ReportBody {
|
|
23
24
|
readonly attribute DOMString featureId;
|
package/webtransport.idl
CHANGED
|
@@ -98,6 +98,7 @@ dictionary WebTransportDatagramStats {
|
|
|
98
98
|
|
|
99
99
|
[Exposed=(Window,Worker), SecureContext, Transferable]
|
|
100
100
|
interface WebTransportSendStream : WritableStream {
|
|
101
|
+
attribute long long? sendOrder;
|
|
101
102
|
Promise<WebTransportSendStreamStats> getStats();
|
|
102
103
|
};
|
|
103
104
|
|
|
@@ -130,12 +131,12 @@ interface WebTransportError : DOMException {
|
|
|
130
131
|
constructor(optional DOMString message = "", optional WebTransportErrorOptions options = {});
|
|
131
132
|
|
|
132
133
|
readonly attribute WebTransportErrorSource source;
|
|
133
|
-
readonly attribute
|
|
134
|
+
readonly attribute unsigned long? streamErrorCode;
|
|
134
135
|
};
|
|
135
136
|
|
|
136
137
|
dictionary WebTransportErrorOptions {
|
|
137
138
|
WebTransportErrorSource source = "stream";
|
|
138
|
-
[Clamp]
|
|
139
|
+
[Clamp] unsigned long? streamErrorCode = null;
|
|
139
140
|
};
|
|
140
141
|
|
|
141
142
|
enum WebTransportErrorSource {
|