Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webtransport/reliability.https.any.html - WPT Dashboard Interop Dashboard
- /webtransport/reliability.https.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /webtransport/reliability.https.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /webtransport/reliability.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,worker
test(() => {
wt.ready.catch(() => {});
wt.closed.catch(() => {});
assert_equals(wt.reliability, 'pending',
'reliability is pending synchronously after construction');
wt.close();
}, 'WebTransport reliability is pending before connection establishment');