Index: net/data/websocket/connect_check.html |
diff --git a/net/data/websocket/connect_check.html b/net/data/websocket/connect_check.html |
deleted file mode 100644 |
index 8d8e815b114c8822fbf517eef375ea1575733ce0..0000000000000000000000000000000000000000 |
--- a/net/data/websocket/connect_check.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<title>test ws connection</title> |
-<script type="text/javascript"> |
-var protocol = location.protocol.replace('http', 'ws'); |
-var url = protocol + '//' + location.host + '/echo-with-no-extension'; |
-// Do connection test. |
-var ws = new WebSocket(url); |
- |
-ws.onopen = function() |
-{ |
- // Set document title to 'PASS'. The test observer catches this title changes |
- // to know the result. |
- document.title = 'PASS'; |
-} |
- |
-ws.onclose = function() |
-{ |
- // Set document title to 'FAIL'. |
- document.title = 'FAIL'; |
-} |
- |
-</script> |
-</head> |
-</html> |