OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Security-Policy" content="img-src 'none'"> | 4 <meta http-equiv="Content-Security-Policy" content="img-src 'none'"> |
5 <script src="/js-test-resources/js-test.js"></script> | 5 <script src="/js-test-resources/js-test.js"></script> |
6 <script src="../resources/securitypolicyviolation-test.js"></script> | 6 <script src="../resources/securitypolicyviolation-test.js"></script> |
7 <script> | 7 <script> |
8 description('Check that a SecurityPolicyViolationEvent strips detail fro
m cross-origin blocked URLs.'); | 8 description('Check that a SecurityPolicyViolationEvent strips detail fro
m cross-origin blocked URLs.'); |
9 | 9 |
10 var expectations = { | 10 var expectations = { |
11 'documentURI': document.location.toString(), | 11 'documentURI': document.location.toString(), |
12 'referrer': document.referrer, | 12 'referrer': document.referrer, |
13 'blockedURI': 'http://localhost:8000', | 13 'blockedURI': 'http://localhost:8000', |
14 'violatedDirective': 'img-src \'none\'', | 14 'violatedDirective': 'img-src \'none\'', |
15 'effectiveDirective': 'img-src', | 15 'effectiveDirective': 'img-src', |
16 'originalPolicy': 'img-src \'none\'', | 16 'originalPolicy': 'img-src \'none\'', |
17 'sourceFile': document.location.toString(), | 17 'sourceFile': '', |
18 'lineNumber': 24, | 18 'lineNumber': 0, |
19 'columnNumber': 21, | 19 'columnNumber': 0, |
20 'statusCode': 200, | 20 'statusCode': 200, |
21 }; | 21 }; |
22 | 22 |
23 function run() { | 23 function run() { |
24 var img = document.createElement('img'); | 24 var img = document.createElement('img'); |
25 img.src = 'http://localhost:8000/security/resources/abe.png'; | 25 img.src = 'http://localhost:8000/security/resources/abe.png'; |
26 document.body.appendChild(img); | 26 document.body.appendChild(img); |
27 } | 27 } |
28 </script> | 28 </script> |
29 </head> | 29 </head> |
30 <body> | 30 <body> |
31 </body> | 31 </body> |
32 </html> | 32 </html> |
OLD | NEW |