Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

// META: title=FetchLater: allowed by CSP
// META: script=/common/utils.js
// META: script=/common/get-host-info.sub.js
// META: script=/fetch/fetch-later/resources/fetch-later-helper.js
'use strict';
const {
HTTPS_NOTSAMESITE_ORIGIN,
} = get_host_info();
// FetchLater requests allowed by Content Security Policy.
const meta = document.createElement('meta');
meta.setAttribute('http-equiv', 'Content-Security-Policy');
meta.setAttribute('content', `connect-src 'self' ${HTTPS_NOTSAMESITE_ORIGIN}`);
document.head.appendChild(meta);
promise_test(async t => {
const uuid = token();
const url = generateSetBeaconURL(uuid, {host: HTTPS_NOTSAMESITE_ORIGIN});
fetchLater(url, {activateAfter: 0});
await expectBeacon(uuid, {count: 1});
t.done();
}, 'FetchLater allowed by CSP should succeed');