Index: LayoutTests/http/tests/websocket/tests/hybi/send-blob.html |
diff --git a/LayoutTests/http/tests/websocket/tests/hybi/send-blob.html b/LayoutTests/http/tests/websocket/tests/hybi/send-blob.html |
deleted file mode 100644 |
index a5dfecb54319fd25452d4d5712ccff433a4e89d1..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/websocket/tests/hybi/send-blob.html |
+++ /dev/null |
@@ -1,66 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="/js-test-resources/js-test.js"></script> |
-</head> |
-<body> |
-<div id="description"></div> |
-<div id="console"></div> |
-<script type="text/javascript"> |
-description("WebSocket: Send Blobs."); |
- |
-window.jsTestIsAsync = true; |
- |
-function startsWith(target, prefix) |
-{ |
- return target.indexOf(prefix) === 0; |
-} |
- |
-function createBlobContainingHelloWorld() |
-{ |
- return new Blob(["Hello, world!"]); |
-} |
- |
-function createEmptyBlob() |
-{ |
- return new Blob([]); |
-} |
- |
-function createBlobContainingAllDistinctBytes() |
-{ |
- var array = new Uint8Array(256); |
- for (var i = 0; i < 256; ++i) |
- array[i] = i; |
- return new Blob([array]); |
-} |
- |
-var url = "ws://127.0.0.1:8880/check-binary-messages"; |
-var ws = new WebSocket(url); |
-var closeEvent; |
- |
-ws.onopen = function() |
-{ |
- ws.send(createBlobContainingHelloWorld()); |
- ws.send(createEmptyBlob()); |
- ws.send(createBlobContainingAllDistinctBytes()); |
-}; |
- |
-ws.onmessage = function(event) |
-{ |
- var message = event.data; |
- if (startsWith(message, "PASS")) |
- testPassed(message); |
- else |
- testFailed(message); |
-}; |
- |
-ws.onclose = function(event) |
-{ |
- closeEvent = event; |
- shouldBeTrue("closeEvent.wasClean"); |
- finishJSTest(); |
-}; |
- |
-</script> |
-</body> |
-</html> |