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 3409efd9f8ca9b3b28689b5b3ff9ce389ae956d0..61f68b107406015d63b73792a919d05b385c42ad 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
| @@ -1113,6 +1113,9 @@ Elements.StylePropertiesSection = class { |
| for (var matchingIndex of matchingSelectorIndexes) |
| matchingSelectors[matchingIndex] = true; |
| + if (this._parentPane._isEditingStyle) |
|
lushnikov
2016/12/05 22:22:09
should this check be in the very beginning of the
allada
2016/12/05 22:40:12
No, the code above this mostly affects non-selecto
|
| + return; |
| + |
| var fragment = this._hoverableSelectorsMode ? this._renderHoverableSelectors(selectorTexts, matchingSelectors) : |
| this._renderSimplifiedSelectors(selectorTexts, matchingSelectors); |
| this._selectorElement.removeChildren(); |