1
0
Fork 0
firefox/testing/web-platform/tests/wasm/webapi/esm-integration/source-phase-blocked-by-csp.tentative.html
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

23 lines
895 B
HTML

<!doctype html>
<title>Source phase imports blocked by CSP</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
setup({allow_uncaught_exception: true});
const test_load = async_test(
"Importing a WebAssembly module should be guarded by script-src CSP.");
window.violationCount = 0;
document.addEventListener("securitypolicyviolation", (e) => {
test_load.step(() => {
assert_equals("script-src-elem", e.violatedDirective);
});
if (++violationCount == 2) {
test_load.done();
}
});
</script>
<script type=module src="./resources/cross-origin-wasm-static-source-phase-import.sub.js"></script>
<script type=module src="./resources/cross-origin-wasm-dynamic-source-phase-import.sub.js"></script>