From 9079b57cc7fa4f35864954ff53083ed33b8c4a1e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 13:02:23 +0000 Subject: [PATCH] Sync interfaces/ with @webref/idl 3.34.2 (#40221) Co-authored-by: wpt-pr-bot --- interfaces/fenced-frame.idl | 2 +- interfaces/permissions-policy.idl | 1 + interfaces/webtransport.idl | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/interfaces/fenced-frame.idl b/interfaces/fenced-frame.idl index c9ea3c32d874f0..440ec2bbaa1060 100644 --- a/interfaces/fenced-frame.idl +++ b/interfaces/fenced-frame.idl @@ -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 { diff --git a/interfaces/permissions-policy.idl b/interfaces/permissions-policy.idl index a789d41738c157..16945e3a9b7cde 100644 --- a/interfaces/permissions-policy.idl +++ b/interfaces/permissions-policy.idl @@ -18,6 +18,7 @@ partial interface Document { partial interface HTMLIFrameElement { [SameObject] readonly attribute PermissionsPolicy permissionsPolicy; }; + [Exposed=Window] interface PermissionsPolicyViolationReportBody : ReportBody { readonly attribute DOMString featureId; diff --git a/interfaces/webtransport.idl b/interfaces/webtransport.idl index 2bea483e1b91f7..a9f514e2366e1e 100644 --- a/interfaces/webtransport.idl +++ b/interfaces/webtransport.idl @@ -98,6 +98,7 @@ dictionary WebTransportDatagramStats { [Exposed=(Window,Worker), SecureContext, Transferable] interface WebTransportSendStream : WritableStream { + attribute long long? sendOrder; Promise getStats(); }; @@ -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 {