fune/dom/security/test/csp/file_main.js
Victor Porof 0a8ff0ad85 Bug 1561435 - Format dom/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35951

--HG--
extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
2019-07-05 10:44:55 +02:00

26 lines
718 B
JavaScript

function doXHR(uri) {
try {
var xhr = new XMLHttpRequest();
xhr.open("GET", uri);
xhr.send();
} catch (ex) {}
}
doXHR(
"http://mochi.test:8888/tests/dom/security/test/csp/file_CSP.sjs?testid=xhr_good"
);
doXHR(
"http://example.com/tests/dom/security/test/csp/file_CSP.sjs?testid=xhr_bad"
);
fetch(
"http://mochi.test:8888/tests/dom/security/test/csp/file_CSP.sjs?testid=fetch_good"
);
fetch(
"http://example.com/tests/dom/security/test/csp/file_CSP.sjs?testid=fetch_bad"
);
navigator.sendBeacon(
"http://mochi.test:8888/tests/dom/security/test/csp/file_CSP.sjs?testid=beacon_good"
);
navigator.sendBeacon(
"http://example.com/tests/dom/security/test/csp/file_CSP.sjs?testid=beacon_bad"
);