Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts.html

Issue 2238003002: DevTools: migrate sources panel sidebar to views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 10dc3cc2e69498265aa3cb84e68a841a6e0a8f1c..1d921ed4c07fb62851eea85a27f4ba7a6fe6e0fa 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,7 +24,8 @@ var test = function()
function callstackStatus()
{
- var statusElement = panel.sidebarPanes.callstack._statusMessageElement;
+ var pane = self.runtime.sharedInstance(WebInspector.CallStackSidebarPane);
+ var statusElement = pane.contentElement;
return statusElement ? statusElement.textContent : "";
}

Powered by Google App Engine
This is Rietveld 408576698