Index: LayoutTests/inspector/profiler/heap-snapshot-reveal-in-dominators-view.html |
diff --git a/LayoutTests/inspector/profiler/heap-snapshot-reveal-in-dominators-view.html b/LayoutTests/inspector/profiler/heap-snapshot-reveal-in-dominators-view.html |
deleted file mode 100644 |
index 107bf949288ab68b93315b9db2fb28a5a4829c5e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/profiler/heap-snapshot-reveal-in-dominators-view.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<html> |
-<head> |
- <script src="../../http/tests/inspector/inspector-test.js"></script> |
- <script src="heap-snapshot-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- var instanceCount = 25; |
- function createHeapSnapshot() |
- { |
- return InspectorTest.createHeapSnapshot(instanceCount); |
- } |
- |
- InspectorTest.runHeapSnapshotTestSuite([ |
- function testShowAll(next) |
- { |
- InspectorTest.takeAndOpenSnapshot(createHeapSnapshot, step1); |
- var nodeAHeapSnapshotObjectId = 5 + 2*15 ; // Id of the 16th A node. |
- |
- function step1() |
- { |
- InspectorTest.addSniffer(WebInspector.HeapSnapshotDominatorsDataGrid.prototype, "highlightNode", didHighlightNode); |
- WebInspector.panels.profiles.showObject(nodeAHeapSnapshotObjectId, "Dominators"); |
- InspectorTest.addResult("Revealing node..."); |
- } |
- |
- function didHighlightNode(node) |
- { |
- InspectorTest.assertEquals(nodeAHeapSnapshotObjectId, node.snapshotNodeId, "Unxpected node highlighted."); |
- InspectorTest.addResult("Node revealed."); |
- next(); |
- } |
- } |
- ]); |
-} |
- |
-</script> |
-</head> |
-<body onload="runTest()"> |
-<p> |
-Tests that an object can be revealed in the Dominators view of detailed heap snapshots. |
-</p> |
-</body> |
-</html> |