Skip to content

Commit c15e19f

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 17.2.5.
1 parent 922655a commit c15e19f

File tree

6 files changed

+191
-59
lines changed

6 files changed

+191
-59
lines changed

ed/algorithms/webtransport.json

Lines changed: 30 additions & 21 deletions
Large diffs are not rendered by default.

ed/dfns/webtransport.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1466,6 +1466,27 @@
14661466
},
14671467
"definedIn": "table"
14681468
},
1469+
{
1470+
"id": "dom-webtransport-protocol-slot",
1471+
"href": "https://w3c.github.io/webtransport/#dom-webtransport-protocol-slot",
1472+
"linkingText": [
1473+
"[[Protocol]]"
1474+
],
1475+
"localLinkingText": [],
1476+
"type": "attribute",
1477+
"for": [
1478+
"WebTransport"
1479+
],
1480+
"access": "public",
1481+
"informative": false,
1482+
"heading": {
1483+
"id": "webtransport-internal-slots",
1484+
"href": "https://w3c.github.io/webtransport/#webtransport-internal-slots",
1485+
"title": "Internal slots",
1486+
"number": "5.1"
1487+
},
1488+
"definedIn": "table"
1489+
},
14691490
{
14701491
"id": "dom-webtransport-closed-slot",
14711492
"href": "https://w3c.github.io/webtransport/#dom-webtransport-closed-slot",
@@ -1826,6 +1847,26 @@
18261847
},
18271848
"definedIn": "dt"
18281849
},
1850+
{
1851+
"id": "dom-webtransport-protocol",
1852+
"href": "https://w3c.github.io/webtransport/#dom-webtransport-protocol",
1853+
"linkingText": [
1854+
"protocol"
1855+
],
1856+
"localLinkingText": [],
1857+
"type": "attribute",
1858+
"for": [
1859+
"WebTransport"
1860+
],
1861+
"access": "public",
1862+
"informative": false,
1863+
"heading": {
1864+
"id": "title",
1865+
"href": "https://w3c.github.io/webtransport/#title",
1866+
"title": "WebTransport"
1867+
},
1868+
"definedIn": "dt"
1869+
},
18291870
{
18301871
"id": "dom-webtransport-close",
18311872
"href": "https://w3c.github.io/webtransport/#dom-webtransport-close",
@@ -2265,6 +2306,44 @@
22652306
},
22662307
"definedIn": "dt"
22672308
},
2309+
{
2310+
"id": "dom-webtransportoptions-protocols",
2311+
"href": "https://w3c.github.io/webtransport/#dom-webtransportoptions-protocols",
2312+
"linkingText": [
2313+
"protocols"
2314+
],
2315+
"localLinkingText": [],
2316+
"type": "dict-member",
2317+
"for": [
2318+
"WebTransportOptions"
2319+
],
2320+
"access": "public",
2321+
"informative": false,
2322+
"heading": {
2323+
"id": "title",
2324+
"href": "https://w3c.github.io/webtransport/#title",
2325+
"title": "WebTransport"
2326+
},
2327+
"definedIn": "dt"
2328+
},
2329+
{
2330+
"id": "protocol-names",
2331+
"href": "https://w3c.github.io/webtransport/#protocol-names",
2332+
"linkingText": [
2333+
"protocol names"
2334+
],
2335+
"localLinkingText": [],
2336+
"type": "dfn",
2337+
"for": [],
2338+
"access": "private",
2339+
"informative": false,
2340+
"heading": {
2341+
"id": "title",
2342+
"href": "https://w3c.github.io/webtransport/#title",
2343+
"title": "WebTransport"
2344+
},
2345+
"definedIn": "prose"
2346+
},
22682347
{
22692348
"id": "compute-a-certificate-hash",
22702349
"href": "https://w3c.github.io/webtransport/#compute-a-certificate-hash",

ed/idl/webtransport.idl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ interface WebTransport {
2525
readonly attribute WebTransportCongestionControl congestionControl;
2626
[EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams;
2727
[EnforceRange] attribute unsigned short? anticipatedConcurrentIncomingBidirectionalStreams;
28+
readonly attribute DOMString protocol;
2829

2930
readonly attribute Promise<WebTransportCloseInfo> closed;
3031
readonly attribute Promise<undefined> draining;
@@ -64,6 +65,7 @@ dictionary WebTransportOptions {
6465
WebTransportCongestionControl congestionControl = "default";
6566
[EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null;
6667
[EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null;
68+
sequence<DOMString> protocols = [];
6769
};
6870

6971
enum WebTransportCongestionControl {

0 commit comments

Comments
 (0)