| Index: third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| index c1752f48319aec4d4350f1fe1f6c10aa4fd5ca99..42ae20c330802c3ee8ae16cd5f4efaac186cdfdf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| @@ -249,11 +249,11 @@ Profiler.BottomUpProfileDataGridTree = class extends Profiler.ProfileDataGridTre
|
| var currentNode = profileDataGridNode;
|
| var focusNode = profileDataGridNode;
|
|
|
| - while (currentNode.parent && (currentNode instanceof Profiler.ProfileDataGridNode)) {
|
| + while (currentNode.parent() && (currentNode instanceof Profiler.ProfileDataGridNode)) {
|
| currentNode._takePropertiesFromProfileDataGridNode(profileDataGridNode);
|
|
|
| focusNode = currentNode;
|
| - currentNode = currentNode.parent;
|
| + currentNode = currentNode.parent();
|
|
|
| if (currentNode instanceof Profiler.ProfileDataGridNode)
|
| currentNode._keepOnlyChild(focusNode);
|
|
|