Index: LayoutTests/inspector/profiler/heap-snapshot-dominators-show-next.html |
diff --git a/LayoutTests/inspector/profiler/heap-snapshot-dominators-show-next.html b/LayoutTests/inspector/profiler/heap-snapshot-dominators-show-next.html |
deleted file mode 100644 |
index ae1c9fc52e189bf73e8a886c0ee92636b37ea09f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/profiler/heap-snapshot-dominators-show-next.html |
+++ /dev/null |
@@ -1,56 +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 testShowNext(next) |
- { |
- InspectorTest.takeAndOpenSnapshot(createHeapSnapshot, step1); |
- |
- function step1() |
- { |
- InspectorTest.switchToView("Dominators", step2); |
- } |
- |
- function step2() |
- { |
- InspectorTest.findAndExpandRow("Window", step3); |
- } |
- |
- function step3(row) |
- { |
- var rowsShown = InspectorTest.countDataRows(row); |
- InspectorTest.assertEquals(true, rowsShown <= instanceCount, "shown more instances than created: " + rowsShown + " > " + instanceCount); |
- if (rowsShown < instanceCount) { |
- var buttonsNode = InspectorTest.findButtonsNode(row); |
- InspectorTest.assertEquals(true, !!buttonsNode, "buttons node"); |
- InspectorTest.clickShowMoreButton("showNext", buttonsNode, step3); |
- } else if (rowsShown === instanceCount) { |
- var buttonsNode = InspectorTest.findButtonsNode(row); |
- InspectorTest.assertEquals(false, !!buttonsNode, "buttons node found when all instances are shown!"); |
- setTimeout(next, 0); |
- } |
- } |
- } |
- ]); |
-} |
- |
-</script> |
-</head> |
-<body onload="runTest()"> |
-<p> |
-Tests Dominators view of detailed heap snapshots. |
-Repeated clicks on "Show Next" button must show all nodes. |
-</p> |
-</body> |
-</html> |