Title: [242897] trunk/Source/WebInspectorUI
Revision
242897
Author
[email protected]
Date
2019-03-13 12:19:26 -0700 (Wed, 13 Mar 2019)

Log Message

Web Inspector: REGRESSION(r242737): unnecessary semicolon added when populating WI.TreeOutline stylesheet
https://bugs.webkit.org/show_bug.cgi?id=195689

Reviewed by Joseph Pecoraro.

* UserInterface/Views/TreeOutline.js:
(WI.TreeOutline._generateStyleRulesIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (242896 => 242897)


--- trunk/Source/WebInspectorUI/ChangeLog	2019-03-13 19:04:43 UTC (rev 242896)
+++ trunk/Source/WebInspectorUI/ChangeLog	2019-03-13 19:19:26 UTC (rev 242897)
@@ -1,3 +1,13 @@
+2019-03-13  Devin Rousso  <[email protected]>
+
+        Web Inspector: REGRESSION(r242737): unnecessary semicolon added when populating WI.TreeOutline stylesheet
+        https://bugs.webkit.org/show_bug.cgi?id=195689
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/TreeOutline.js:
+        (WI.TreeOutline._generateStyleRulesIfNeeded):
+
 2019-03-13  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Network - HAR Export duplicates blocked/send time if there was no dns/connect block

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.js (242896 => 242897)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.js	2019-03-13 19:04:43 UTC (rev 242896)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.js	2019-03-13 19:19:26 UTC (rev 242897)
@@ -955,7 +955,7 @@
             childrenSubstring += i === maximumTreeDepth ? " .children" : " > .children";
             styleText += `.${WI.TreeOutline.ElementStyleClassName}:not(.${WI.TreeOutline.CustomIndentStyleClassName})${childrenSubstring} > .item { `;
             styleText += `-webkit-padding-start: calc(var(--tree-outline-item-padding) + ${depthPadding * i}px);`;
-            styleText += ` };\n`;
+            styleText += ` }\n`;
         }
 
         WI.TreeOutline._styleElement.textContent = styleText;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to