| Index: LayoutTests/http/tests/websocket/tests/hybi/nocache.html
|
| diff --git a/LayoutTests/http/tests/websocket/tests/hybi/nocache.html b/LayoutTests/http/tests/websocket/tests/hybi/nocache.html
|
| deleted file mode 100644
|
| index 19f54e72b1910bde692ae0cc513a07320feb93e1..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/websocket/tests/hybi/nocache.html
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| -<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("Test whether WebSocket request contains no-cache headers");
|
| -
|
| -window.jsTestIsAsync = true;
|
| -
|
| -var ws = new WebSocket("ws://localhost:8880/nocache-test");
|
| -var closeEvent;
|
| -var message;
|
| -
|
| -ws.onopen = function() {
|
| - debug("onopen() was called.");
|
| -};
|
| -
|
| -ws.onmessage = function(event) {
|
| - message = event.data;
|
| - shouldBeEqualToString("message", "PASS");
|
| - ws.close();
|
| -};
|
| -
|
| -ws.onclose = function(event) {
|
| - debug("onclose() was called.");
|
| - closeEvent = event;
|
| - shouldBeTrue("closeEvent.wasClean");
|
| - finishJSTest();
|
| -};
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|