Skip to content

Commit

Permalink
Sync interfaces/ with @webref/idl 3.34.2 (#40221)
Browse files Browse the repository at this point in the history
Co-authored-by: wpt-pr-bot <[email protected]>
  • Loading branch information
github-actions[bot] and wpt-pr-bot authored May 25, 2023
1 parent 13ba7ce commit 9079b57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interfaces/fenced-frame.idl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Fenced frame (https://wicg.github.io/fenced-frame/)
// Source: Fenced Frame (https://wicg.github.io/fenced-frame/)

[Exposed=Window]
interface HTMLFencedFrameElement : HTMLElement {
Expand Down
1 change: 1 addition & 0 deletions interfaces/permissions-policy.idl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ partial interface Document {
partial interface HTMLIFrameElement {
[SameObject] readonly attribute PermissionsPolicy permissionsPolicy;
};

[Exposed=Window]
interface PermissionsPolicyViolationReportBody : ReportBody {
readonly attribute DOMString featureId;
Expand Down
5 changes: 3 additions & 2 deletions interfaces/webtransport.idl
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ dictionary WebTransportDatagramStats {

[Exposed=(Window,Worker), SecureContext, Transferable]
interface WebTransportSendStream : WritableStream {
attribute long long? sendOrder;
Promise<WebTransportSendStreamStats> getStats();
};

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

readonly attribute WebTransportErrorSource source;
readonly attribute octet? streamErrorCode;
readonly attribute unsigned long? streamErrorCode;
};

dictionary WebTransportErrorOptions {
WebTransportErrorSource source = "stream";
[Clamp] octet? streamErrorCode = null;
[Clamp] unsigned long? streamErrorCode = null;
};

enum WebTransportErrorSource {
Expand Down

0 comments on commit 9079b57

Please sign in to comment.