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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js

Issue 2625223002: [DevTools] Dedicated frontend for debugging Node. (Closed)
Patch Set: test fix Created 3 years, 11 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/http/tests/inspector/debugger-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
index d051e28daef460c09305c5dfa2c3b54c38c3f056..518576525be2f943f047fe3971839ca0f5dfa461 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
@@ -648,8 +648,8 @@ InspectorTest.waitForExecutionContextInTarget = function(target, callback)
InspectorTest.selectThread = function(target)
{
var threadsPane = self.runtime.sharedInstance(Sources.ThreadsSidebarPane);
- var listItem = threadsPane._listItemForTarget(target);
- threadsPane._onListItemClick(listItem);
+ var listItem = threadsPane._targetToListItem.get(target);
+ threadsPane._onListItemClick(listItem, target);
}
InspectorTest.evaluateOnCurrentCallFrame = function(code)
« no previous file with comments | « content/public/browser/devtools_agent_host.h ('k') | third_party/WebKit/Source/devtools/front_end/devtools_compatibility.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698