Index: LayoutTests/inspector/profiler/heap-snapshot-summary-sorting-instances.html |
diff --git a/LayoutTests/inspector/profiler/heap-snapshot-summary-sorting-instances.html b/LayoutTests/inspector/profiler/heap-snapshot-summary-sorting-instances.html |
index 7babde87bd619269eb323ec3a7ce0d68ed1166b6..c88b73ba85de0a034cec6d483560e219cae22446 100644 |
--- a/LayoutTests/inspector/profiler/heap-snapshot-summary-sorting-instances.html |
+++ b/LayoutTests/inspector/profiler/heap-snapshot-summary-sorting-instances.html |
@@ -57,7 +57,7 @@ function test() |
var columnName = columns[currentColumn].identifier; |
var row = InspectorTest.findRow("B"); |
InspectorTest.assertEquals(true, !!row, "\"B\" row"); |
- var contents = row.children.map(function(obj) { return obj.element.children[currentColumn].textContent; }); |
+ var contents = row.children.map(function(obj) { return obj.element().children[currentColumn].textContent; }); |
InspectorTest.assertEquals(instanceCount, contents.length, "column contents"); |
var sortTypes = { object: "text", distance: "number", count: "number", shallowSize: "size", retainedSize: "size" }; |
InspectorTest.assertEquals(true, !!sortTypes[columns[currentColumn].identifier], "sort by identifier"); |