| Index: third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html b/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
|
| index ad273198d70c3815bd393e2f2aa9e6bd813e2c58..2df66b4aa33fdef4f08a0b106bff6dae67509b70 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector-protocol/cpu-profiler/console-profile.html
|
| @@ -55,7 +55,7 @@ function test()
|
|
|
| function findFunctionInProfile(node, functionName)
|
| {
|
| - if (node.functionName === functionName)
|
| + if (node.callFrame.functionName === functionName)
|
| return true;
|
| var children = node.children;
|
| for (var i = 0; i < children.length; ++i)
|
|
|