| 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)
|
|
|