Title: [200575] trunk/Source/WebInspectorUI
Revision
200575
Author
r...@igalia.com
Date
2016-05-09 09:09:17 -0700 (Mon, 09 May 2016)

Log Message

[css-grid] Update Grid Layout properties in CSSKeywordCompletions.js
https://bugs.webkit.org/show_bug.cgi?id=157166

Reviewed by Timothy Hatcher.

The CSS Grid Layout properties have been changing on the spec,
however they haven't been updated in CSSKeywordCompletions for a long time.
Update them using the last spec draft:
https://drafts.csswg.org/css-grid/#property-index

* UserInterface/Models/CSSKeywordCompletions.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (200574 => 200575)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-05-09 14:59:23 UTC (rev 200574)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-05-09 16:09:17 UTC (rev 200575)
@@ -1,3 +1,17 @@
+2016-05-09  Manuel Rego Casasnovas  <r...@igalia.com>
+
+        [css-grid] Update Grid Layout properties in CSSKeywordCompletions.js
+        https://bugs.webkit.org/show_bug.cgi?id=157166
+
+        Reviewed by Timothy Hatcher.
+
+        The CSS Grid Layout properties have been changing on the spec,
+        however they haven't been updated in CSSKeywordCompletions for a long time.
+        Update them using the last spec draft:
+        https://drafts.csswg.org/css-grid/#property-index
+
+        * UserInterface/Models/CSSKeywordCompletions.js:
+
 2016-05-09  Matt Baker  <mattba...@apple.com>
 
         Web Inspector: Cleanup issue tree elements in the Debugger sidebar

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js (200574 => 200575)


--- trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-05-09 14:59:23 UTC (rev 200574)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js	2016-05-09 16:09:17 UTC (rev 200575)
@@ -776,33 +776,51 @@
     "flex-basis": [
         "auto"
     ],
-    "grid-after": [
-        "auto"
+    "grid": [
+        "none"
     ],
-    "grid-before": [
+    "grid-area": [
         "auto"
     ],
-    "grid-end": [
-        "auto"
+    "grid-auto-columns": [
+        "auto", "-webkit-max-content", "-webkit-min-content", "minmax()",
     ],
-    "grid-start": [
-        "auto"
-    ],
     "grid-auto-flow": [
         "row", "column", "dense"
     ],
+    "grid-auto-rows": [
+        "auto", "-webkit-max-content", "-webkit-min-content", "minmax()",
+    ],
     "grid-column": [
         "auto"
     ],
+    "grid-column-start": [
+        "auto"
+    ],
+    "grid-column-end": [
+        "auto"
+    ],
     "grid-row": [
         "auto"
     ],
-    "grid-columns": [
-        "auto", "-webkit-max-content", "-webkit-min-content"
+    "grid-row-start": [
+        "auto"
     ],
-    "grid-rows": [
-        "auto", "-webkit-max-content", "-webkit-min-content"
+    "grid-row-end": [
+        "auto"
     ],
+    "grid-template": [
+        "none"
+    ],
+    "grid-template-areas": [
+        "none"
+    ],
+    "grid-template-columns": [
+        "none", "auto", "-webkit-max-content", "-webkit-min-content", "minmax()", "repeat()"
+    ],
+    "grid-template-rows": [
+        "none", "auto", "-webkit-max-content", "-webkit-min-content", "minmax()", "repeat()"
+    ],
     "-webkit-ruby-position": [
         "after", "before", "inter-character"
     ],
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to