| Index: LayoutTests/inspector/profiler/heap-snapshot-containment-expansion-preserved-when-sorting.html
|
| diff --git a/LayoutTests/inspector/profiler/heap-snapshot-containment-expansion-preserved-when-sorting.html b/LayoutTests/inspector/profiler/heap-snapshot-containment-expansion-preserved-when-sorting.html
|
| index b56b62256116235147d97dcdadb71894ef936e0d..22cdd862eeb24abdb6ddab5192a291567e21999b 100644
|
| --- a/LayoutTests/inspector/profiler/heap-snapshot-containment-expansion-preserved-when-sorting.html
|
| +++ b/LayoutTests/inspector/profiler/heap-snapshot-containment-expansion-preserved-when-sorting.html
|
| @@ -50,9 +50,9 @@ function test()
|
| {
|
| function propertyMatcher(data)
|
| {
|
| - return data.name === "a" && data.value.charAt(0) === "A";
|
| + return data._referenceName === "a" && data._name.charAt(0) === "A";
|
| }
|
| - var aRow = InspectorTest.findRow("object", propertyMatcher, row);
|
| + var aRow = InspectorTest.findMatchingRow(propertyMatcher, row);
|
| InspectorTest.assertEquals(true, !!aRow, "\"a: A\" row");
|
| InspectorTest.expandRow(aRow, step6);
|
| }
|
|
|