Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2284)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-block-cross-origin-image.html

Issue 2002943002: CSP violation reports should report the pre-redirect URL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/security/resources/abe.png',
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': '', 17 'sourceFile': '',
18 'lineNumber': 0, 18 'lineNumber': 0,
19 'columnNumber': 0, 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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698