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

Unified Diff: LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting.html

Issue 352603003: DevTools: Nuke Dominators view from heap profiler. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline Created 6 years, 6 months 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
« no previous file with comments | « no previous file | LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting.html
diff --git a/LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting.html b/LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting.html
deleted file mode 100644
index 5278419d1c6ca2de836f1685865af7f1efdb06f6..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting.html
+++ /dev/null
@@ -1,80 +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 testExpansionPreservedWhenSorting(next)
- {
- InspectorTest.takeAndOpenSnapshot(createHeapSnapshot, step1);
-
- function step1()
- {
- InspectorTest.switchToView("Dominators", step2);
- }
-
- var columns;
- function step2()
- {
- columns = InspectorTest.viewColumns();
- InspectorTest.clickColumn(columns[0], step3);
- }
-
- function step3()
- {
- InspectorTest.findAndExpandWindow(step4);
- }
-
- function step4(row)
- {
- var buttonsNode = InspectorTest.findButtonsNode(row);
- InspectorTest.assertEquals(true, !!buttonsNode, "no buttons node found!");
- InspectorTest.clickShowMoreButton("showAll", buttonsNode, step5);
- }
-
- function step5(row)
- {
- var row = row.children[0];
- InspectorTest.assertEquals(true, !!row, "\"B\" instance row");
- InspectorTest.expandRow(row, step6);
- }
-
- var columnContents;
- function step6()
- {
- columnContents = InspectorTest.columnContents(columns[0]);
- InspectorTest.clickColumn(columns[0], clickTwice);
- function clickTwice()
- {
- InspectorTest.clickColumn(columns[0], step7);
- }
- }
-
- function step7()
- {
- var newColumnContents = InspectorTest.columnContents(columns[0]);
- InspectorTest.assertColumnContentsEqual(columnContents, newColumnContents);
- setTimeout(next, 0);
- }
- }
- ]);
-}
-
-</script>
-</head>
-<body onload="runTest()">
-<p>
-Tests Dominators view of detailed heap snapshots.
-Expanded nodes must be preserved after sorting.
-</p>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/profiler/heap-snapshot-dominators-expansion-preserved-when-sorting-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698