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

Side by Side Diff: LayoutTests/fast/events/intercept-postmessage.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body><pre id="console"></pre></body> 3 <body><pre id="console"></pre></body>
4 <script> 4 <script>
5 function write(str) { 5 function write(str) {
6 pre = document.getElementById('console'); 6 pre = document.getElementById('console');
7 text = document.createTextNode(str + '\n'); 7 text = document.createTextNode(str + '\n');
8 pre.appendChild(text); 8 pre.appendChild(text);
9 } 9 }
10 10
(...skipping 24 matching lines...) Expand all
35 35
36 if (window.testRunner) { 36 if (window.testRunner) {
37 window.testRunner.dumpAsText(); 37 window.testRunner.dumpAsText();
38 window.testRunner.waitUntilDone(); 38 window.testRunner.waitUntilDone();
39 } 39 }
40 40
41 window.postMessage("Message 1", "*"); 41 window.postMessage("Message 1", "*");
42 </script> 42 </script>
43 </html> 43 </html>
44 44
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/drag-downloadURL-expected.txt ('k') | LayoutTests/fast/events/intercept-postmessage-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698