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> |