mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
|
@ -0,0 +1,20 @@
|
|||
// META: script=/service-workers/service-worker/resources/test-helpers.sub.js
|
||||
// META: script=resources/utils.js
|
||||
'use strict';
|
||||
|
||||
// Tests that requests blocked by Content Security Policy are rejected.
|
||||
// https://w3c.github.io/webappsec-csp/#should-block-request
|
||||
|
||||
// This is not a comprehensive test of Content Security Policy - it is just
|
||||
// intended to check that CSP checks are enabled.
|
||||
|
||||
var meta = document.createElement('meta');
|
||||
meta.setAttribute('http-equiv', 'Content-Security-Policy');
|
||||
meta.setAttribute('content', "connect-src 'none'");
|
||||
document.head.appendChild(meta);
|
||||
|
||||
backgroundFetchTest((t, bgFetch) => {
|
||||
return promise_rejects(
|
||||
t, new TypeError(),
|
||||
bgFetch.fetch(uniqueTag(), 'https://example.com'));
|
||||
}, 'fetch blocked by CSP should reject');
|
Loading…
Add table
Add a link
Reference in a new issue