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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/network/websocket-initiator.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp Created 3 years, 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></s cript> 4 <script src="../../http/tests/inspector-protocol/resources/inspector-protocol-te st.js"></script>
5 <script> 5 <script>
6 testRunner.setDumpConsoleMessages(false); 6 testRunner.setDumpConsoleMessages(false);
7 var ws; 7 var ws;
8 function createSocket() 8 function createSocket()
9 { 9 {
10 ws = new WebSocket("ws://localhost:0000/WillFailToConnect"); 10 ws = new WebSocket("ws://localhost:0000/WillFailToConnect");
11 } 11 }
12 12
13 function test() 13 function test()
14 { 14 {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 return url; 59 return url;
60 } 60 }
61 61
62 enableNetwork(); 62 enableNetwork();
63 } 63 }
64 </script> 64 </script>
65 </head> 65 </head>
66 <body onload="runTest();"> 66 <body onload="runTest();">
67 <p>Initiator for Websockets check fixes http://crbug.com/457811</p> 67 <p>Initiator for Websockets check fixes http://crbug.com/457811</p>
68 </body> 68 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698