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

Side by Side Diff: LayoutTests/http/tests/htmlimports/csp-ignored-in-import.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 <link id="havingDirective" rel="import" href="resources/having-csp-directive.htm l">
5 <link id="havingDirectiveOverCors" rel="import" href="http://localhost:8000/html imports/resources/cors-csp-blocking.cgi">
6 </head>
7 <body>
8 <pre id="result"></pre>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12
13 if (window.havingDirective.import.querySelector("#shouldBeImported").import != n ull)
14 result.innerHTML += "PASS\n";
15 else
16 result.innerHTML += "FAIL: The import should be allowed.\n";
17
18 if (window.havingDirectiveOverCors.import.querySelector("#shouldBeImported").imp ort != null)
19 result.innerHTML += "PASS\n";
20 else
21 result.innerHTML += "FAIL: The import should be allowed.\n";
22
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698