1
0
Fork 0
firefox/dom/security/test/csp/file_main.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +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"
);