https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 95fcc7595a9e0eaec42034d056cef4e2de04cfd1 authored by Sebastian Hengst on 11 April 2018, 09:29:31 UTC
Backed out changeset 0f81334efa0a (bug 1445883) for crashes (bug 1446902). a=backout
Tip revision: 95fcc75
meta-modified.html
<!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>
back to top