Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /webtransport/csp-pass.https.window.html - WPT Dashboard Interop Dashboard
// META: global=window,worker
// META: script=/common/get-host-info.sub.js
// META: script=resources/webtransport-test-helpers.sub.js
function set_csp(destination) {
let meta = document.createElement('meta');
meta.httpEquiv = 'Content-Security-Policy';
meta.content = `connect-src ${destination}`;
return meta;
}
promise_test(async t => {
let meta = set_csp(`${BASE}`);
document.head.appendChild(meta);
let wt = new WebTransport(webtransport_url('custom-response.py?:status=200'));
await wt.ready;
}, 'WebTransport connection should succeed when CSP connect-src destination is set to the page');