Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion interfaces/device-memory.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: Device Memory (https://www.w3.org/TR/device-memory/)
// Source: Device Memory API (https://www.w3.org/TR/device-memory/)

[
SecureContext,
Expand Down
3 changes: 2 additions & 1 deletion interfaces/fetch.idl
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
6 changes: 3 additions & 3 deletions interfaces/webtransport.idl
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -83,8 +83,6 @@ enum WebTransportCongestionControl {
"low-latency",
};

enum DatagramsReadableMode { "bytes" };

dictionary WebTransportCloseInfo {
unsigned long closeCode = 0;
USVString reason = "";
Expand All @@ -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;
Expand Down