blob: 0395304b816240a43d6cd01cd07c877e85a446cd [file] [log] [blame]
if (this.document === undefined) {
importScripts("/resources/testharness.js");
importScripts("../resources/utils.js");
}
//Content-Security-Policy: connect-src 'none'; cf .headers file
cspViolationUrl = RESOURCES_DIR + "top.txt";
promise_test(function(test) {
return promise_rejects(test, new TypeError(), fetch(cspViolationUrl));
}, "Fetch is blocked by CSP, got a TypeError");
done();