Skip to content

Commit 4edb04e

Browse files
committed
Bug 1835039 [wpt PR 40221] - Sync interfaces/ with webref/idl 3.34.2, a=testonly
Automatic update from web-platform-tests Sync interfaces/ with webref/idl 3.34.2 (#40221) Co-authored-by: wpt-pr-bot <wpt-pr-botusers.noreply.github.com> -- wpt-commits: 9079b57cc7fa4f35864954ff53083ed33b8c4a1e wpt-pr: 40221 UltraBlame original commit: f43bba7eb3fe6f96cde88f26b183ee7c76256908
1 parent 8d44f36 commit 4edb04e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

testing/web-platform/tests/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 {

testing/web-platform/tests/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;

testing/web-platform/tests/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)