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

Side by Side Diff: LayoutTests/http/tests/security/resources/cross-frame-iframe.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 function fireSentinel() 4 function fireSentinel()
5 { 5 {
6 parent.postMessage("LOADED", "*"); 6 parent.postMessage("LOADED", "*");
7 if (window.testRunner)
8 testRunner.globalFlag = true;
9 } 7 }
10 </script> 8 </script>
11 </head> 9 </head>
12 <body onload="fireSentinel();"> 10 <body onload="fireSentinel();">
13 <p id='accessMe'></p> 11 <p id='accessMe'></p>
14 <p>Inner iframe.</p> 12 <p>Inner iframe.</p>
15 </body> 13 </body>
16 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698