Title: [210036] trunk/Source/WebInspectorUI
Revision
210036
Author
[email protected]
Date
2016-12-20 13:57:22 -0800 (Tue, 20 Dec 2016)

Log Message

Update keyword completions in the inspector for the new scroll snapping CSS properties
https://bugs.webkit.org/show_bug.cgi?id=166235

Reviewed by Joseph Pecoraro.

The CSS keyword completions for the scroll snapping properties need to be updated for the latest version of the spec.

* UserInterface/Models/CSSKeywordCompletions.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (210035 => 210036)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-12-20 21:47:31 UTC (rev 210035)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-12-20 21:57:22 UTC (rev 210036)
@@ -1,3 +1,14 @@
+2016-12-20  Wenson Hsieh  <[email protected]>
+
+        Update keyword completions in the inspector for the new scroll snapping CSS properties
+        https://bugs.webkit.org/show_bug.cgi?id=166235
+
+        Reviewed by Joseph Pecoraro.
+
+        The CSS keyword completions for the scroll snapping properties need to be updated for the latest version of the spec.
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
 2016-12-20  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Console could be made useful for very simple await expressions

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (210035 => 210036)


--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-12-20 21:47:31 UTC (rev 210035)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-12-20 21:57:22 UTC (rev 210036)
@@ -839,6 +839,12 @@
     "orientation": [
         "auto", "portait", "landscape"
     ],
+    "scroll-snap-align": [
+        "none", "start", "center", "end"
+    ],
+    "scroll-snap-type": [
+        "none", "mandatory", "proximity", "x", "y", "inline", "block", "both"
+    ],
     "user-zoom": [
         "zoom", "fixed"
     ],
@@ -1009,21 +1015,6 @@
     "-webkit-animation-trigger": [
         "auto", "container-scroll()"
     ],
-    "-webkit-scroll-snap-type": [
-        "none", "mandatory", "proximity"
-    ],
-    "-webkit-scroll-snap-points-x": [
-        "elements", "repeat()"
-    ],
-    "-webkit-scroll-snap-points-y": [
-        "elements", "repeat()"
-    ],
-    "-webkit-scroll-snap-destination": [
-        "none", "left", "right", "bottom", "top", "center"
-    ],
-    "-webkit-scroll-snap-coordinate": [
-        "none", "left", "right", "bottom", "top", "center"
-    ],
 
     // iOS Properties
     "-webkit-text-size-adjust": [
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to