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

Side by Side Diff: LayoutTests/http/tests/websocket/frame-lengths.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 <p>Test sending and receiving small messages of different lengths.</p> 1 <p>Test sending and receiving small messages of different lengths.</p>
2 <p>Should say PASS:</p> 2 <p>Should say PASS:</p>
3 <pre id=log>Running the test... 3 <pre id=log>Running the test...
4 </pre> 4 </pre>
5 <script> 5 <script>
6 var maxLength = 1025; 6 var maxLength = 1025;
7 7
8 if (window.testRunner) { 8 if (window.testRunner) {
9 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
10 testRunner.waitUntilDone(); 10 testRunner.waitUntilDone();
(...skipping 25 matching lines...) Expand all
36 ws.send("Goodbye"); 36 ws.send("Goodbye");
37 ws.onmessage = null; 37 ws.onmessage = null;
38 if (window.testRunner) 38 if (window.testRunner)
39 setTimeout("testRunner.notifyDone()", 0); 39 setTimeout("testRunner.notifyDone()", 0);
40 } else { 40 } else {
41 lastString += "*"; 41 lastString += "*";
42 ws.send(lastString); 42 ws.send(lastString);
43 } 43 }
44 } 44 }
45 </script> 45 </script>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/websocket/fragmented-frames_wsh.py ('k') | LayoutTests/http/tests/websocket/frame-lengths-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698