| Index: third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
|
| index f31875b1a0e4fc0cbf6c0c85aebf34ac823017c5..45f72ca41fa1648f25cdbc1105d3475a9023907e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js
|
| @@ -417,6 +417,11 @@ WebInspector.SearchableView.prototype = {
|
| */
|
| _onSearchKeyDown: function(event)
|
| {
|
| + if (isEscKey(event)) {
|
| + this.closeSearch();
|
| + event.consume(true);
|
| + return;
|
| + }
|
| if (!isEnterKey(event))
|
| return;
|
|
|
|
|