Source code

Revision control

Copy as Markdown

Other Tools

<!-- Any copyright is dedicated to the Public Domain.
<!doctype HTML>
<html>
<head>
<meta charset="utf-8"/>
<title>WebSocket Inspection Test Page</title>
</head>
<body>
<h1>WebSocket Inspection Test Page</h1>
<script type="text/javascript">
"use strict";
const ws = new WebSocket(
ws.onopen = () => {
ws.send("readyState:" + document.readyState);
ws.close();
}
</script>
<script type="text/javascript"
</body>
</html>