Index: net/data/websocket/connect_to.html |
diff --git a/net/data/websocket/connect_to.html b/net/data/websocket/connect_to.html |
deleted file mode 100644 |
index 05c653fc5d2ab9a333efea5b4c5eee83a03bbe07..0000000000000000000000000000000000000000 |
--- a/net/data/websocket/connect_to.html |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<title>test ws connection</title> |
-<script type="text/javascript"> |
- |
-var href = window.location.href; |
-var queryBegin = href.indexOf('?url='); |
-if (queryBegin == -1) { |
- console.log("Failed to find ?url= in URL"); |
- document.title = 'FAIL'; |
- throw "FAILURE"; |
-} |
-var url = href.slice(queryBegin + 5); |
- |
-// 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> |