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

Unified Diff: LayoutTests/inspector/timeline/timeline-dfs.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/inspector/timeline/timeline-dfs.html
diff --git a/LayoutTests/inspector/timeline/timeline-dfs.html b/LayoutTests/inspector/timeline/timeline-dfs.html
deleted file mode 100644
index 03d2bca408a70cb64a8362a3c6468789c2b7ced6..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/timeline/timeline-dfs.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/timeline-test.js"></script>
-<script type="text/javascript">
-
-var test = function()
-{
-
- function dumper(record)
- {
- InspectorTest.addResult(record.type());
- }
-
- var records = [
- {"type" : "a", "children" : [
- {"type" : "aa", "children": [
- {"type" : "aaa"},
- {"type" : "aab"},
- ]},
- {"type" : "ab", "children":[
- {"type" : "aba"},
- {"type" : "abb"},
- ]}
- ]},
- {"type" : "b", "children" : [
- {"type" : "ba", "children" : [
- {"type" : "baa"},
- {"type" : "bab"},
- ]},
- {"type" : "bb", "children":[
- {"type" : "bba"},
- {"type" : "bbb"},
- ]}
- ]},
- ];
-
- InspectorTest.loadTimelineRecords(records);
- InspectorTest.addResult("DFS preorder:");
- InspectorTest.timelineModel().forAllRecords(dumper);
- InspectorTest.addResult("");
-
- InspectorTest.addResult("DFS postorder:");
- InspectorTest.timelineModel().forAllRecords(null, dumper);
- InspectorTest.completeTest();
-}
-
-</script>
-</head>
-<body onload="runTest()">
-<p>Tests TimelineModel.forAllRecords function.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698