Title: [196076] trunk/Source/WebInspectorUI
Revision
196076
Author
[email protected]
Date
2016-02-03 13:10:08 -0800 (Wed, 03 Feb 2016)

Log Message

Add hanging-punctuation property to Web Inspector
https://bugs.webkit.org/show_bug.cgi?id=153841

Reviewed by Zalan Bujtas.

* UserInterface/Models/CSSKeywordCompletions.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (196075 => 196076)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-02-03 20:54:30 UTC (rev 196075)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-02-03 21:10:08 UTC (rev 196076)
@@ -1,3 +1,12 @@
+2016-02-03  Dave Hyatt  <[email protected]>
+
+        Add hanging-punctuation property to Web Inspector
+        https://bugs.webkit.org/show_bug.cgi?id=153841
+
+        Reviewed by Zalan Bujtas.
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
 2016-02-03  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Uncaught exception TimelineRuler.prototype.resize no longer exists

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (196075 => 196076)


--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-02-03 20:54:30 UTC (rev 196075)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-02-03 21:10:08 UTC (rev 196076)
@@ -93,7 +93,7 @@
     "azimuth", "border-collapse", "border-spacing", "caption-side", "clip-rule", "color", "color-interpolation",
     "color-interpolation-filters", "color-rendering", "cursor", "direction", "elevation", "empty-cells", "fill",
     "fill-opacity", "fill-rule", "font", "font-family", "font-size", "font-style", "font-variant", "font-weight",
-    "glyph-orientation-horizontal", "glyph-orientation-vertical", "image-rendering", "kerning", "letter-spacing",
+    "glyph-orientation-horizontal", "glyph-orientation-vertical", "hanging-punctuation", "image-rendering", "kerning", "letter-spacing",
     "line-height", "list-style", "list-style-image", "list-style-position", "list-style-type", "marker", "marker-end",
     "marker-mid", "marker-start", "orphans", "pitch", "pitch-range", "pointer-events", "quotes", "resize", "richness",
     "shape-rendering", "speak", "speak-header", "speak-numeral", "speak-punctuation", "speech-rate", "stress", "stroke",
@@ -283,6 +283,9 @@
     "float": [
         "none", "left", "right"
     ],
+    "hanging-punctuation": [
+        "none", "first", "last", "allow-end", "force-end"
+    ],
     "overflow-x": [
         "hidden", "auto", "visible", "overlay", "scroll", "marquee"
     ],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to