Changeset 200575 in webkit


Ignore:
Timestamp:
May 9, 2016 9:09:17 AM (8 years ago)
Author:
Manuel Rego Casasnovas
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:
Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r200574 r200575  
     12016-05-09  Manuel Rego Casasnovas  <rego@igalia.com>
     2
     3        [css-grid] Update Grid Layout properties in CSSKeywordCompletions.js
     4        https://bugs.webkit.org/show_bug.cgi?id=157166
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        The CSS Grid Layout properties have been changing on the spec,
     9        however they haven't been updated in CSSKeywordCompletions for a long time.
     10        Update them using the last spec draft:
     11        https://drafts.csswg.org/css-grid/#property-index
     12
     13        * UserInterface/Models/CSSKeywordCompletions.js:
     14
    1152016-05-09  Matt Baker  <mattbaker@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js

    r200510 r200575  
    777777        "auto"
    778778    ],
    779     "grid-after": [
    780         "auto"
    781     ],
    782     "grid-before": [
    783         "auto"
    784     ],
    785     "grid-end": [
    786         "auto"
    787     ],
    788     "grid-start": [
    789         "auto"
     779    "grid": [
     780        "none"
     781    ],
     782    "grid-area": [
     783        "auto"
     784    ],
     785    "grid-auto-columns": [
     786        "auto", "-webkit-max-content", "-webkit-min-content", "minmax()",
    790787    ],
    791788    "grid-auto-flow": [
    792789        "row", "column", "dense"
    793790    ],
     791    "grid-auto-rows": [
     792        "auto", "-webkit-max-content", "-webkit-min-content", "minmax()",
     793    ],
    794794    "grid-column": [
    795795        "auto"
    796796    ],
     797    "grid-column-start": [
     798        "auto"
     799    ],
     800    "grid-column-end": [
     801        "auto"
     802    ],
    797803    "grid-row": [
    798804        "auto"
    799805    ],
    800     "grid-columns": [
    801         "auto", "-webkit-max-content", "-webkit-min-content"
    802     ],
    803     "grid-rows": [
    804         "auto", "-webkit-max-content", "-webkit-min-content"
     806    "grid-row-start": [
     807        "auto"
     808    ],
     809    "grid-row-end": [
     810        "auto"
     811    ],
     812    "grid-template": [
     813        "none"
     814    ],
     815    "grid-template-areas": [
     816        "none"
     817    ],
     818    "grid-template-columns": [
     819        "none", "auto", "-webkit-max-content", "-webkit-min-content", "minmax()", "repeat()"
     820    ],
     821    "grid-template-rows": [
     822        "none", "auto", "-webkit-max-content", "-webkit-min-content", "minmax()", "repeat()"
    805823    ],
    806824    "-webkit-ruby-position": [
Note: See TracChangeset for help on using the changeset viewer.