Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: net/data/websocket/split_packet_check.html

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/data/websocket/proxied_request_check.html ('k') | net/data/websocket/truncated-headers_wsh.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/data/websocket/split_packet_check.html
diff --git a/net/data/websocket/split_packet_check.html b/net/data/websocket/split_packet_check.html
deleted file mode 100644
index 6b7e980a788a7533942a8ee991b2b06bcadc657d..0000000000000000000000000000000000000000
--- a/net/data/websocket/split_packet_check.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>test ws split packet</title>
-<script type="text/javascript">
-var protocol = location.protocol.replace('http', 'ws');
-var url = protocol + '//' + location.host + '/close-with-split-packet';
-
-// Do connection test.
-var ws = new WebSocket(url);
-
-ws.onopen = function()
-{
- // Close WebSocket connection once it is established.
- ws.close();
-}
-
-ws.onclose = function(event)
-{
- // Check wasClean, then set proper title.
- if (event.wasClean && event.code === 3004 && event.reason === 'split test')
- document.title = 'PASS';
- else
- document.title = 'FAIL';
-}
-
-</script>
-</head>
-</html>
« no previous file with comments | « net/data/websocket/proxied_request_check.html ('k') | net/data/websocket/truncated-headers_wsh.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698