1
0
Fork 0
firefox/testing/web-platform/tests/content-security-policy/parsing/invalid-directive.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

22 lines
774 B
HTML

<meta http-equiv="content-security-policy" content="img-src 'none'; aaa;">
<title>Parsing: Unknown directive is ignored</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(async t => {
img = document.createElement('img');
img.src = "../support/fail.png";
return Promise.all([
new Promise((resolve, reject) => {
img.onerror = resolve;
img.onload = reject;
}),
new Promise(resolve => {
window.addEventListener('securitypolicyviolation', e => {
if (e.blockedURI.endsWith("/support/fail.png"))
resolve();
});
})
]);
}, "Even if an unknown directive is specified, img-src is honored.");
</script>