tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 8dc412936f1bbe39404887d5de146d1c422792de
parent a496e44dffb6cfa6e4afe69af4e9c8cb1f2eccc8
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri, 19 Dec 2025 09:17:59 +0000

Bug 2006611 [wpt PR 56806] - Sync interfaces/ with @webref/idl 3.70.1, a=testonly

Automatic update from web-platform-tests
Sync interfaces/ with @webref/idl 3.70.1 (#56806)

Co-authored-by: wpt-pr-bot <wpt-pr-bot@users.noreply.github.com>
--

wpt-commits: 2937e3f0cb2fe84be76f45392439c9a9ae9e0cb5
wpt-pr: 56806

Diffstat:
Mtesting/web-platform/tests/interfaces/device-memory.idl | 2+-
Mtesting/web-platform/tests/interfaces/fetch.idl | 3++-
Mtesting/web-platform/tests/interfaces/webtransport.idl | 6+++---
3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/testing/web-platform/tests/interfaces/device-memory.idl b/testing/web-platform/tests/interfaces/device-memory.idl @@ -1,7 +1,7 @@ // GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into webref // (https://github.com/w3c/webref) -// Source: Device Memory (https://www.w3.org/TR/device-memory/) +// Source: Device Memory API (https://www.w3.org/TR/device-memory/) [ SecureContext, diff --git a/testing/web-platform/tests/interfaces/fetch.idl b/testing/web-platform/tests/interfaces/fetch.idl @@ -85,7 +85,8 @@ enum RequestRedirect { "follow", "error", "manual" }; enum RequestDuplex { "half" }; enum RequestPriority { "high", "low", "auto" }; -[Exposed=(Window,Worker)]interface Response { +[Exposed=(Window,Worker)] +interface Response { constructor(optional BodyInit? body = null, optional ResponseInit init = {}); [NewObject] static Response error(); diff --git a/testing/web-platform/tests/interfaces/webtransport.idl b/testing/web-platform/tests/interfaces/webtransport.idl @@ -74,7 +74,7 @@ dictionary WebTransportOptions { [EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null; [EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null; sequence<DOMString> protocols = []; - DatagramsReadableMode datagramsReadableMode; + ReadableStreamType datagramsReadableType; }; enum WebTransportCongestionControl { @@ -83,8 +83,6 @@ enum WebTransportCongestionControl { "low-latency", }; -enum DatagramsReadableMode { "bytes" }; - dictionary WebTransportCloseInfo { unsigned long closeCode = 0; USVString reason = ""; @@ -101,6 +99,8 @@ dictionary WebTransportSendStreamOptions : WebTransportSendOptions { dictionary WebTransportConnectionStats { unsigned long long bytesSent; + unsigned long long bytesSentOverhead; + unsigned long long bytesAcknowledged; unsigned long long packetsSent; unsigned long long bytesLost; unsigned long long packetsLost;