Skip to content

Commit 9079b57

Browse files
Sync interfaces/ with @webref/idl 3.34.2 (#40221)
Co-authored-by: wpt-pr-bot <[email protected]>
1 parent 13ba7ce commit 9079b57

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

interfaces/fenced-frame.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// GENERATED CONTENT - DO NOT EDIT
22
// Content was automatically extracted by Reffy into webref
33
// (https://github.com/w3c/webref)
4-
// Source: Fenced frame (https://wicg.github.io/fenced-frame/)
4+
// Source: Fenced Frame (https://wicg.github.io/fenced-frame/)
55

66
[Exposed=Window]
77
interface HTMLFencedFrameElement : HTMLElement {

interfaces/permissions-policy.idl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ partial interface Document {
1818
partial interface HTMLIFrameElement {
1919
[SameObject] readonly attribute PermissionsPolicy permissionsPolicy;
2020
};
21+
2122
[Exposed=Window]
2223
interface PermissionsPolicyViolationReportBody : ReportBody {
2324
readonly attribute DOMString featureId;

interfaces/webtransport.idl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ dictionary WebTransportDatagramStats {
9898

9999
[Exposed=(Window,Worker), SecureContext, Transferable]
100100
interface WebTransportSendStream : WritableStream {
101+
attribute long long? sendOrder;
101102
Promise<WebTransportSendStreamStats> getStats();
102103
};
103104

@@ -130,12 +131,12 @@ interface WebTransportError : DOMException {
130131
constructor(optional DOMString message = "", optional WebTransportErrorOptions options = {});
131132

132133
readonly attribute WebTransportErrorSource source;
133-
readonly attribute octet? streamErrorCode;
134+
readonly attribute unsigned long? streamErrorCode;
134135
};
135136

136137
dictionary WebTransportErrorOptions {
137138
WebTransportErrorSource source = "stream";
138-
[Clamp] octet? streamErrorCode = null;
139+
[Clamp] unsigned long? streamErrorCode = null;
139140
};
140141

141142
enum WebTransportErrorSource {

0 commit comments

Comments
 (0)