summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/style-src-attr-elem/style-src-elem-allowed-src-blocked.html
blob: c15cf0bcf64cb535de38235bf1971cd7e4e7f1d0 (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
<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Security-Policy" content="style-src-elem 'unsafe-inline';
    style-src 'none';">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script>
      var t = async_test("Inline style should be applied");
      window.addEventListener('securitypolicyviolation', t.unreached_func("Should not have fired a spv event"));
    </script>
</head>

<body>
    <style>
      body {background: green;}
    </style>
    <script>
      t.step(function() {
        assert_equals(document.styleSheets.length, 1);
        t.done();
      });
    </script>
</body>

</html>