Index: LayoutTests/http/tests/inspector/websocket/timeline-websocket-event.html |
diff --git a/LayoutTests/http/tests/inspector/websocket/timeline-websocket-event.html b/LayoutTests/http/tests/inspector/websocket/timeline-websocket-event.html |
deleted file mode 100644 |
index 68282b02c7ef6e06fbb874eb7be0ea6c2f3218b4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/inspector/websocket/timeline-websocket-event.html |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-<html> |
-<head> |
-<script src="../inspector-test.js"></script> |
-<script src="../timeline-test.js"></script> |
-<script> |
- |
-function performActions(callback) |
-{ |
- var ws = new WebSocket("ws://127.0.0.1:8880/simple"); |
- ws.onclose = callback; |
-} |
- |
-function test() |
-{ |
- InspectorTest.invokeAsyncWithTimeline("performActions", finish); |
- |
- function finish() |
- { |
- InspectorTest.printTimelineRecords("WebSocketCreate"); |
- InspectorTest.printTimelineRecords("WebSocketSendHandshakeRequest"); |
- InspectorTest.printTimelineRecords("WebSocketReceiveHandshakeResponse"); |
- InspectorTest.printTimelineRecords("WebSocketDestroy"); |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-if (!window.testRunner) |
- setTimeout(performActions, 2000); |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests the Timeline events for WebSocket |
-</p> |
- |
-</body> |
-</html> |