<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Security-Policy" content="connect-src ws://127.0.0.1:8880"> | |
<script> | |
if (window.testRunner) | |
testRunner.dumpAsText(); | |
</script> | |
</head> | |
<body> | |
<pre id="console"></pre> | |
<script> | |
function log(msg) | |
{ | |
document.getElementById("console").appendChild(document.createTextNode(msg + "\n")); | |
} | |
try { | |
var ws = new WebSocket("ws://localhost:8880/websocket/tests/hybi/echo"); | |
log("Fail"); | |
} catch(e) { | |
log("Pass"); | |
} | |
</script> | |
</body> | |
</html> |