summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/default-src/default-src-inline-blocked.sub.html
blob: 0cb4ca55387990c0631f29c3b56712e8c540b3b1 (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
<!DOCTYPE html>
<html>

<head>
    <!-- Programmatically converted from a WebKit Reftest, please forgive resulting idiosyncracies.-->
    <script>
        window.addEventListener('securitypolicyviolation', function(e) {
            log("violated-directive=" + e.violatedDirective);
        });
    </script>
    <meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src 'self';">
    <title>default-src-inline-blocked</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src='../support/logTest.sub.js?logs=["violated-directive=script-src-elem","violated-directive=script-src-elem"]'></script>
    <script src='../support/alertAssert.sub.js?alerts=[]'></script>
</head>

<body>
    <p>This test passes if the inline scripts don't create failing tests and a CSP report is sent.</p>
    <script>
        test(function() {
            assert_unreached('FAIL inline script ran')
        });

    </script>
    <script src="../support/document-write-alert-fail.js"></script>
    <div id="log"></div>
</body>

</html>