Title: [210069] trunk/Source/WebInspectorUI
Revision
210069
Author
[email protected]
Date
2016-12-21 11:13:32 -0800 (Wed, 21 Dec 2016)

Log Message

Web Inspector: Uncommenting CSS properties doesn't work for inline styles
https://bugs.webkit.org/show_bug.cgi?id=166297

Reviewed by Brian Burg.

* UserInterface/Views/CSSStyleDeclarationTextEditor.js:
Update checkboxes for inline styles, too.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (210068 => 210069)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-12-21 19:06:35 UTC (rev 210068)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-12-21 19:13:32 UTC (rev 210069)
@@ -1,3 +1,13 @@
+2016-12-21  Nikita Vasilyev  <[email protected]>
+
+        Web Inspector: Uncommenting CSS properties doesn't work for inline styles
+        https://bugs.webkit.org/show_bug.cgi?id=166297
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/CSSStyleDeclarationTextEditor.js:
+        Update checkboxes for inline styles, too.
+
 2016-12-20  Matt Baker  <[email protected]>
 
         Web Inspector: Window resize causes TimelineOverview graph elements to be repositioned

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js (210068 => 210069)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js	2016-12-21 19:06:35 UTC (rev 210068)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js	2016-12-21 19:13:32 UTC (rev 210069)
@@ -1403,6 +1403,7 @@
         // Reset the content if the text is different and we are not focused.
         if (!this.focused && (!this._style.text || this._style.text !== this._formattedContent())) {
             this._resetContent();
+            this._updateTextMarkers();
             return;
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to