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

Side by Side Diff: LayoutTests/http/tests/websocket/workers/worker-simple.html

Issue 101143002: Remove hybi sub directory for WebSocket layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head></head> 3 <head></head>
4 <body> 4 <body>
5 <p>Test for WebSocket in Worker.</p> 5 <p>Test for WebSocket in Worker.</p>
6 <p></p> 6 <p></p>
7 <p>On success, you will see a series of "PASS" messages, followed by "TEST COMPL ETE".</p> 7 <p>On success, you will see a series of "PASS" messages, followed by "TEST COMPL ETE".</p>
8 <pre id=log> 8 <pre id=log>
9 </pre> 9 </pre>
10 <script> 10 <script>
(...skipping 15 matching lines...) Expand all
26 } 26 }
27 var worker = new Worker('resources/worker-simple.js'); 27 var worker = new Worker('resources/worker-simple.js');
28 worker.onmessage = function (evt) { 28 worker.onmessage = function (evt) {
29 log(evt.data); 29 log(evt.data);
30 if (evt.data == "DONE") 30 if (evt.data == "DONE")
31 endTest(); 31 endTest();
32 }; 32 };
33 </script> 33 </script>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698