Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| index 6af29a6cce5b2dfd01ab57dbc0dd54078baf204d..e08a5d01371381666868edcd2ee2721a0febef3d 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| @@ -48,6 +48,8 @@ WebInspector.StylesSidebarPane = function() |
| this._keyDownBound = this._keyDown.bind(this); |
| this._keyUpBound = this._keyUp.bind(this); |
| + this._sectionBlocks = []; |
|
dgozman
2016/05/10 18:09:37
Annotate?
lushnikov
2016/05/10 20:16:39
Done.
|
| + |
| WebInspector.targetManager.addModelListener(WebInspector.CSSModel, WebInspector.CSSModel.Events.LayoutEditorChange, this._onLayoutEditorChange, this); |
| } |