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
|
<html><body>
Creating WebSocket
<iframe id="frame" sandbox="allow-scripts"></iframe>
<script type="application/javascript">
function cleanup() {
window.document.getElementById("frame").removeAttribute("src");
window.document.getElementById("frame").remove();
}
onmessage = function(e) {
cleanup();
window.opener.postMessage(e.data, '*');
}
// Mixed content blocker will prevent loading iframes via http, so in that case pass back the error
window.document.getElementById("frame").onerror = function() {
cleanup();
window.opener.postMessage("Error - iframe not loaded", '*');
}
// Load one of the iframe variants?
if (location.search == '?https_iframe_wss') {
window.document.getElementById("frame").src = "https://example.com/tests/dom/websocket/tests/iframe_websocket_wss.html";
} else if (location.search == '?https_iframe_ws') {
window.document.getElementById("frame").src = "https://example.com/tests/dom/websocket/tests/iframe_websocket_wss.html?insecure";
} else if (location.search == '?http_iframe_wss' || location.search == '?http_iframe_ws') {
let iFrameUrl = "http://example.com/tests/dom/websocket/tests/iframe_websocket_wss.html";
if (location.search == '?http_iframe_ws') {
iFrameUrl += "?insecure";
}
window.document.getElementById("frame").src = iFrameUrl;
}
else {
try {
let socket;
if (location.search == '?insecure') {
socket = new WebSocket('ws://mochi.test:8888/tests/dom/websocket/tests/file_websocket_hello');
}
else {
socket = new WebSocket('wss://example.com/tests/dom/websocket/tests/file_websocket_hello');
}
socket.onerror = function() {
cleanup();
window.opener.postMessage("WS onerror", "*");
};
socket.onopen = function() {
socket.close();
cleanup();
window.opener.postMessage("WS onopen", "*");
};
}
catch(e) {
if (e.name == 'SecurityError') {
cleanup();
window.opener.postMessage("SecurityError", "*");
} else {
cleanup();
window.opener.postMessage("Test Throws", "*");
}
}
}
</script>
</body></html>
|