| <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> |
| <p>Test passes if the image is blocked both before and after policy modification.</p> |
| var img = document.createElement('img'); |
| img.src = '../support/fail.png'; |
| img.onerror = function() { |
| img.onload = function() { |
| document.body.appendChild(img); |
| document.getElementById("meta_csp").setAttribute("content", "img-src *"); |