| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html
|
| index 1d921ed4c07fb62851eea85a27f4ba7a6fe6e0fa..de7d7b795ec872bf0ae9afa1d0fc16ae4f6a700f 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html
|
| @@ -24,9 +24,8 @@ var test = function()
|
|
|
| function callstackStatus()
|
| {
|
| - var pane = self.runtime.sharedInstance(WebInspector.CallStackSidebarPane);
|
| - var statusElement = pane.contentElement;
|
| - return statusElement ? statusElement.textContent : "";
|
| + var statusElement = panel.element.querySelector(".paused-message");
|
| + return statusElement ? statusElement.deepTextContent() : "not found";
|
| }
|
|
|
| function step1()
|
|
|