Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.json5

Issue 2737843003: [css-align] Implement place-items alignment shorthand (Closed)
Patch Set: More layout tests fixes. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 // This file specifies all the CSS properties we support and the necessary 2 // This file specifies all the CSS properties we support and the necessary
3 // information for our code generation. The various supported arguments 3 // information for our code generation. The various supported arguments
4 // are described below with example usage 4 // are described below with example usage
5 5
6 parameters: { 6 parameters: {
7 // - alias_for: "other-property" 7 // - alias_for: "other-property"
8 // Properties specifying alias_for should be virtually identical to the 8 // Properties specifying alias_for should be virtually identical to the
9 // properties they alias. Minor parsing differences are allowed as long as 9 // properties they alias. Minor parsing differences are allowed as long as
10 // the CSSValues created are of the same format of the aliased property. 10 // the CSSValues created are of the same format of the aliased property.
(...skipping 2743 matching lines...) Expand 10 before | Expand all | Expand 10 after
2754 name: "grid", 2754 name: "grid",
2755 longhands: "grid-template-rows;grid-template-columns;grid-template-areas;g rid-auto-flow;grid-auto-rows;grid-auto-columns;grid-column-gap;grid-row-gap", 2755 longhands: "grid-template-rows;grid-template-columns;grid-template-areas;g rid-auto-flow;grid-auto-rows;grid-auto-columns;grid-column-gap;grid-row-gap",
2756 runtime_flag: "CSSGridLayout", 2756 runtime_flag: "CSSGridLayout",
2757 }, 2757 },
2758 { 2758 {
2759 name: "place-content", 2759 name: "place-content",
2760 longhands: "align-content;justify-content", 2760 longhands: "align-content;justify-content",
2761 runtime_flag: "CSSGridLayout", 2761 runtime_flag: "CSSGridLayout",
2762 }, 2762 },
2763 { 2763 {
2764 name: "place-items",
2765 longhands: "align-items;justify-items",
2766 runtime_flag: "CSSGridLayout",
2767 },
2768 {
2764 name: "grid-area", 2769 name: "grid-area",
2765 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" , 2770 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" ,
2766 runtime_flag: "CSSGridLayout", 2771 runtime_flag: "CSSGridLayout",
2767 }, 2772 },
2768 { 2773 {
2769 name: "grid-column", 2774 name: "grid-column",
2770 longhands: "grid-column-start;grid-column-end", 2775 longhands: "grid-column-start;grid-column-end",
2771 runtime_flag: "CSSGridLayout", 2776 runtime_flag: "CSSGridLayout",
2772 }, 2777 },
2773 { 2778 {
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
3171 { 3176 {
3172 name: "-webkit-transition-timing-function", 3177 name: "-webkit-transition-timing-function",
3173 alias_for: "transition-timing-function", 3178 alias_for: "transition-timing-function",
3174 }, 3179 },
3175 { 3180 {
3176 name: "-webkit-user-select", 3181 name: "-webkit-user-select",
3177 alias_for: "user-select", 3182 alias_for: "user-select",
3178 }, 3183 },
3179 ], 3184 ],
3180 } 3185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698