summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/script-src/script-src-strict_dynamic_in_img-src.html
blob: 29a2a59573e8e49c799c41024b892dc4ed49e914 (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
<!DOCTYPE HTML>
<html>

<head>
    <title>`strict-dynamic` does not drop allowed source expressions in `img-src`.</title>
    <script src='/resources/testharness.js' nonce='dummy'></script>
    <script src='/resources/testharnessreport.js' nonce='dummy'></script>

    <!-- CSP served: img-src 'strict-dynamic' 'self' -->
</head>

<body>
    <h1>`strict-dynamic` does not drop allowed source expressions in `img-src`.</h1>
    <div id='log'></div>

    <script nonce='dummy'>
        window.addEventListener('securitypolicyviolation', function(e) {
            assert_unreached('No CSP violation report has fired.');
        });

        async_test(function(t) {
            var e = document.createElement('img');
            e.id = 'allowedImage';
            e.src = '/content-security-policy/support/pass.png';
            e.onerror = t.unreached_func('Error should not be triggered.');
            e.onload = t.step_func_done();
            document.body.appendChild(e);
        }, '`strict-dynamic` does not drop allowed source expressions in `img-src`.');
    </script>
</body>

</html>