summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/parsing/invalid-directive.html
blob: d96141ee1a629d9d7ab384ca4c64b4181ab5e83a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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>