| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |