summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/meta/meta-modified.html
blob: d03115f31b09e3cde8868a36549a8299c0402093 (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
34
35
<!DOCTYPE html>
<html>

<head>
    <meta id="meta_csp" http-equiv="Content-Security-Policy" content="img-src 'none'">
    <title>meta-modified</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src='../support/logTest.sub.js?logs=["PASS", "PASS","TEST COMPLETE"]'></script>
</head>

<body>
<p>Test passes if the image is blocked both before and after policy modification.</p>

    <script>
    function testImgSrc() {
        var img = document.createElement('img');
        img.src = '../support/fail.png';
        img.onerror = function() {
            log("PASS");
        };
        img.onload = function() {
            log("FAIL");
        };
        document.body.appendChild(img);
    }
    testImgSrc();
    document.getElementById("meta_csp").setAttribute("content", "img-src *");
    testImgSrc();
    log("TEST COMPLETE");
    </script>
    <div id="log"></div>
</body>

</html>