tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / http / tests / websocket / tests / hixie76 / bad-handshake-crash.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../../../js-test-resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <div id="description"></div>
8 <div id="console"></div>
9 <script type="text/javascript">
10 description("Make sure WebSocket doesn't crash with bad handshake message.");
11
12 window.jsTestIsAsync = true;
13
14 var ws = new WebSocket("ws://127.0.0.1:8880/websocket/tests/hixie76/bad-handshake-crash");
15 ws.onopen = function () {
16     debug("WebSocket is open");
17 };
18 ws.onclose = function () {
19     debug("WebSocket is closed");
20     finishJSTest();
21 };
22
23 </script>
24 <script src="../../../../js-test-resources/js-test-post.js"></script>
25 </body>
26 </html>