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

Side by Side Diff: LayoutTests/http/tests/security/host-compare-case-insensitive.html

Issue 494343003: Eliminate globalFlag usage from http security layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: consistify Created 6 years, 4 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 testRunner.dumpChildFramesAsText(); 6 testRunner.dumpChildFramesAsText();
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 } 8 }
9
10 window.onload = function ()
11 {
12 window.frames[1].postMessage('run test', '*');
13 };
9 </script> 14 </script>
10 </head> 15 </head>
11 <body> 16 <body>
12 <p>This tests that the comparison of the host for security is done case inse nsitive.</p> 17 <p>This tests that the comparison of the host for security is done case inse nsitive.</p>
13 <iframe name="frameA" src="http://localhost:8000/security/resources/cross-fr ame-iframe.html"></iframe> 18 <iframe name="frameA" src="http://localhost:8000/security/resources/cross-fr ame-iframe.html"></iframe>
14 <iframe name="frameB" src="http://LOCALHOST:8000/security/resources/localhos t-accesssor.html"></iframe> 19 <iframe name="frameB" src="http://LOCALHOST:8000/security/resources/localhos t-accesssor.html"></iframe>
15 </body> 20 </body>
16 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698