Index: net/data/websocket/counted_connection.html |
diff --git a/net/data/websocket/counted_connection.html b/net/data/websocket/counted_connection.html |
deleted file mode 100644 |
index bb53ec1fa925b07486e3c8d268bf6b4004f1d4c0..0000000000000000000000000000000000000000 |
--- a/net/data/websocket/counted_connection.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<!doctype html> |
-<html> |
-<head> |
-<title>Connect to a WebSocket server</title> |
-<script type="text/javascript"> |
-var protocol = location.protocol.replace('http', 'ws'); |
-var url = protocol + '//' + location.host + '/count-connection'; |
-var ws = new WebSocket(url); |
- |
-ws.onopen = function() { |
- document.title = 'CONNECTED'; |
-}; |
- |
-ws.onclose = function() { |
- document.title = 'CLOSED'; |
-}; |
-</script> |
-</head> |
-</html> |