| Index: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| index eb34f0e3918bb50ff2503e662191e8f726c7df23..1caef0413a06aa74054ca3efc4b379c5298f2370 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -425,7 +425,7 @@ WebInspector.ObjectPropertyTreeElement.prototype = {
|
| this._editingCommitted(originalContent);
|
| return;
|
| }
|
| - if (event.keyIdentifier === "U+001B") { // Esc
|
| + if (event.key === "Escape") {
|
| event.consume();
|
| this._editingCancelled();
|
| return;
|
|
|