зеркало из https://github.com/mozilla/gecko-dev.git
72 строки
1.6 KiB
HTML
72 строки
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
-->
|
|
<head>
|
|
<title>bug 1081686</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body onload="testWebSocket()">
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
var ws;
|
|
|
|
function forcegc()
|
|
{
|
|
SpecialPowers.forceGC();
|
|
SpecialPowers.gc();
|
|
setTimeout(function()
|
|
{
|
|
SpecialPowers.gc();
|
|
}, 0);
|
|
}
|
|
|
|
function testWebSocket () {
|
|
ws = new WebSocket("ws://mochi.test:8888/tests/dom/websocket/tests/file_websocket_hello");
|
|
ws.onopen = function(e) {
|
|
ws.send("data");
|
|
}
|
|
ws.onclose = function(e) {
|
|
forcegc();
|
|
setTimeout(function() {
|
|
is(ws.readyState, 3, 'WebSocket is closed');
|
|
is(ws.bufferedAmount, 0, 'WebSocket.bufferedAmount should be empty.');
|
|
is(ws.binaryType, 'blob', 'WebSocket.binaryType is blob');
|
|
ws.binaryType = 'arraybuffer';
|
|
is(ws.binaryType, 'arraybuffer', 'WebSocket.binaryType is arraybuffer');
|
|
is(ws.url, 'ws://mochi.test:8888/tests/dom/websocket/tests/file_websocket_hello', 'WebSocket.url is correct');
|
|
ws.close();
|
|
ws.send('foobar');
|
|
SimpleTest.finish();
|
|
}, 1000);
|
|
}
|
|
|
|
ws.onerror = function(e) {
|
|
ok(false, "onerror called!");
|
|
SimpleTest.finish();
|
|
}
|
|
ws.onmessage = function(e) {
|
|
is(e.data, "Hello world!", "Wrong data");
|
|
ws.close();
|
|
}
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.requestFlakyTimeout("untriaged");
|
|
|
|
</script>
|
|
</pre>
|
|
<div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|