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

Side by Side Diff: LayoutTests/http/tests/htmlimports/csp-block-import-non-self.html

Issue 19940002: [HTML Import] Respect Content Security Policy Model (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix mac build failure. Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-in line'">
5 <link id="selfImport" rel="import" href="resources/hello.html">
6 <link id="nonSelfImport" rel="import" href="http://localhost:8080/htmlimports/re sources/cors-basic.cgi">
7 </head>
8 <body>
9 <pre id="result"></pre>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 if (window.selfImport.import != null)
15 result.innerHTML += "PASS\n";
16 else
17 result.innerHTML += "FAIL: The import should be allowed.\n";
18
19 if (window.nonSelfImport.import == null)
20 result.innerHTML += "PASS\n";
21 else
22 result.innerHTML += "FAIL: The import should be blocked.\n";
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698