| Index: third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js b/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| index 5195fa73a6d4aeba78c88fd15aa7394feac90aee..2656cd90157c2b113975eadfe24e16d05dcbb3ce 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| @@ -146,6 +146,7 @@ WebInspector.CodeMirrorTextEditor = function()
|
| this._codeMirror.on("changes", this._changes.bind(this));
|
| this._codeMirror.on("beforeSelectionChange", this._beforeSelectionChange.bind(this));
|
| this._codeMirror.on("keyHandled", this._onKeyHandled.bind(this));
|
| + this._codeMirror.on("focus", this.wasFocused.bind(this));
|
|
|
| this.element.style.overflow = "hidden";
|
| this._codeMirrorElement.classList.add("source-code");
|
|
|