| Index: third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| index e5db6c5da006cc898eaeba93857942ec8f28ffb9..e90d6923a9bac05de33681ec8aaedbcf1dff71c8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
|
| @@ -664,10 +664,11 @@ WebInspector.Main.SearchActionDelegate.prototype = {
|
| * @param {!WebInspector.Context} context
|
| * @param {string} actionId
|
| * @return {boolean}
|
| + * @suppressGlobalPropertiesCheck
|
| */
|
| handleAction: function(context, actionId)
|
| {
|
| - var searchableView = WebInspector.SearchableView.fromElement(WebInspector.currentFocusElement()) || WebInspector.inspectorView.currentPanel().searchableView();
|
| + var searchableView = WebInspector.SearchableView.fromElement(document.deepActiveElement()) || WebInspector.inspectorView.currentPanel().searchableView();
|
| if (!searchableView)
|
| return false;
|
| switch (actionId) {
|
|
|