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

Unified Diff: LayoutTests/http/tests/inspector/websocket/timeline-websocket-event.html

Issue 709423002: DevTools: remove old Timeline front-end implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated LayoutTests/inspector/layers/layer-canvas-log.html Created 6 years, 1 month 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
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>

Powered by Google App Engine
This is Rietveld 408576698