summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webtransport/csp-pass.https.window.js
blob: 3c315d078f6cd7e6a2d5b4530fc0b8b42af8cffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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');