| Index: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| index 14685a27a132a93b896ed593ede88667011f3031..60c60a1683798bc5e867d2ad9ccac67a0936ea4e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| @@ -118,7 +118,7 @@ WebInspector.BlockedURLsPane.prototype = {
|
| if (isEnterKey(event)) {
|
| event.consume();
|
| commit.call(this);
|
| - } else if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Esc.code || event.keyIdentifier === "U+001B") {
|
| + } else if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Esc.code || event.key === "Escape") {
|
| event.consume();
|
| finish.call(this);
|
| this._update();
|
|
|