| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/async-call-stack-url.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/async-call-stack-url.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/async-call-stack-url.html
|
| index 86e8faaa28cd948e6ef9d952a6d2124467588e3d..8a06b992d67576c8e771c17b68489abf34087d07 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/async-call-stack-url.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/async-call-stack-url.html
|
| @@ -44,9 +44,9 @@ var test = function()
|
|
|
| function step6()
|
| {
|
| - var callFrameList = self.runtime.sharedInstance(Sources.CallStackSidebarPane).callFrameList;
|
| - for (var item of callFrameList._items)
|
| - InspectorTest.addResult(item.element.textContent.replace(/VM\d+/g, "VM"));
|
| + var pane = self.runtime.sharedInstance(Sources.CallStackSidebarPane);
|
| + for (var element of pane.contentElement.querySelectorAll('.call-frame-item'))
|
| + InspectorTest.addResult(element.deepTextContent().replace(/VM\d+/g, "VM"));
|
| InspectorTest.completeDebuggerTest();
|
| }
|
| }
|
|
|