1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<!DOCTYPE html>
<html>
<!--
Copyright 2010-2015 Brian McKelvey.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<meta charset="utf-8">
<title>Firefox Bug</title>
<script>
var socket;
var requestedLength;
function connect() {
if (socket && socket.readyState === WebSocket.OPEN) {
socket.close();
}
socket = new WebSocket(get_appropriate_ws_url(), 'fragmentation-test');
socket.onopen = handleSocketOpen;
socket.onmessage = handleSocketMessage;
socket.onclose = handleSocketClose;
socket.onerror = handleSocketError;
}
function disconnect() {
socket.close();
}
function clearLog() {
}
function clearLog() {
var el = document.getElementById('output');
el.innerHTML = '';
}
function log(data) {
// if (window['console'] && window['console']['log'])
// console.log(data)
var el = document.getElementById('output');
el.innerHTML += ('<br>\n' + data);
}
function requestData() {
socket.send('sendMessage|' + requestedLength);
requestedLength += Math.ceil(Math.random() * 1024);
}
function handleSocketOpen() {
log("Socket opened.");
requestedLength = 100;
requestData();
}
function handleSocketMessage(event) {
log("Received " + event.data.length + " character utf-8 response from server.");
requestData();
}
function handleSocketClose() {
log("Socket closed.");
}
function handleSocketError() {
log("Socket error.")
}
function get_appropriate_ws_url()
{
var pcol;
var u = document.URL;
/*
* We open the websocket encrypted if this page came on an
* https:// url itself, otherwise unencrypted
*/
if (u.substring(0, 5) == "https") {
pcol = "wss://";
u = u.substr(8);
} else {
pcol = "ws://";
if (u.substring(0, 4) == "http")
u = u.substr(7);
}
u = u.split('/');
return pcol + u[0];
}
</script>
</head>
<body>
<div>
<h1>Controls</h1>
<button onclick="clearLog()">Clear Log</button>
<button onclick="connect()">Connect</button>
<button onclick="disconnect()">Disconnect</button><br><br>
</div>
<div>
<h1>Output</h1>
<div id="output">Ready.</div>
</div>
</body>
</html>
|