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

Unified Diff: LayoutTests/http/tests/inspector/timeline-xhr-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/timeline-xhr-event.html
diff --git a/LayoutTests/http/tests/inspector/timeline-xhr-event.html b/LayoutTests/http/tests/inspector/timeline-xhr-event.html
deleted file mode 100644
index bbe498be72ff524c4c1297131df8c5942c2efd8d..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/inspector/timeline-xhr-event.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-<head>
-<script src="inspector-test.js"></script>
-<script src="timeline-test.js"></script>
-<script src="network-test.js"></script>
-<script>
-
-function performActions(callback)
-{
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "network/resources/resource.php", true);
- xhr.onload = callback; // This is necessary for XHRLoad event.
- xhr.onreadystatechange = function () { }; // This is necessary for XHRReadyStateChange event.
- xhr.send(null);
-}
-
-function test()
-{
- InspectorTest.resetInspectorResourcesData(step1);
- function step1()
- {
- InspectorTest.invokeAsyncWithTimeline("performActions", finish);
-
- function finish()
- {
- InspectorTest.printTimelineRecords("XHRReadyStateChange");
- InspectorTest.printTimelineRecords("XHRLoad");
- InspectorTest.completeTest();
- }
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests the Timeline events for XMLHttpReqeust
-</p>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/http/tests/inspector/timeline-test.js ('k') | LayoutTests/http/tests/inspector/timeline-xhr-event-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698