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

Side by Side Diff: LayoutTests/http/tests/websocket/no-crash-on-cookie-flood.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="/js-test-resources/js-test.js"></script> 3 <script src="/js-test-resources/js-test.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <div id="description"></div> 6 <div id="description"></div>
7 <div id="console"></div> 7 <div id="console"></div>
8 <script> 8 <script>
9 description('Test that the browser doesn\'t crash for lots of Set-Cookies in a W ebSocket handshake.'); 9 description('Test that the browser doesn\'t crash for lots of Set-Cookies in a W ebSocket handshake.');
10 10
(...skipping 14 matching lines...) Expand all
25 shouldBeTrue('wasClean'); 25 shouldBeTrue('wasClean');
26 finishJSTest(); 26 finishJSTest();
27 }; 27 };
28 ws.onerror = function () { 28 ws.onerror = function () {
29 debug('FAIL: A WebSocket connection has an error.'); 29 debug('FAIL: A WebSocket connection has an error.');
30 finishJSTest(); 30 finishJSTest();
31 }; 31 };
32 </script> 32 </script>
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698