summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html
blob: 90ec73341b2bec9c932225839212c2a367b9d09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Security-Policy" content="style-src 'none'; script-src 'self' 'unsafe-inline'">
    <title>inline-style-blocked</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script>
      async_test(t => {
        window.addEventListener('securitypolicyviolation', t.step_func(e => {
          if (e.blockedURI !== 'inline') return;
          assert_equals(e.violatedDirective, 'style-src-elem');
          t.done();
        }));
      }, "Triggers securitypolicyviolation.");
    </script>
    <style>
        .target {
            background-color: blue;
        }
    </style>
</head>

<body>
  <script>
    test(t => {
      assert_equals(document.styleSheets.length, 0);
    }, "Inline style element is blocked by CSP.");
  </script>
</body>

</html>