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

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

Issue 2804623002: [css-align] Implement place-self alignment shorthand (Closed)
Patch Set: Added a regression test. 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 2757 matching lines...) Expand 10 before | Expand all | Expand 10 after
2768 name: "place-content", 2768 name: "place-content",
2769 longhands: "align-content;justify-content", 2769 longhands: "align-content;justify-content",
2770 runtime_flag: "CSSGridLayout", 2770 runtime_flag: "CSSGridLayout",
2771 }, 2771 },
2772 { 2772 {
2773 name: "place-items", 2773 name: "place-items",
2774 longhands: "align-items;justify-items", 2774 longhands: "align-items;justify-items",
2775 runtime_flag: "CSSGridLayout", 2775 runtime_flag: "CSSGridLayout",
2776 }, 2776 },
2777 { 2777 {
2778 name: "place-self",
2779 longhands: "align-self;justify-self",
2780 runtime_flag: "CSSGridLayout",
2781 },
2782 {
2778 name: "grid-area", 2783 name: "grid-area",
2779 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" , 2784 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" ,
2780 runtime_flag: "CSSGridLayout", 2785 runtime_flag: "CSSGridLayout",
2781 }, 2786 },
2782 { 2787 {
2783 name: "grid-column", 2788 name: "grid-column",
2784 longhands: "grid-column-start;grid-column-end", 2789 longhands: "grid-column-start;grid-column-end",
2785 runtime_flag: "CSSGridLayout", 2790 runtime_flag: "CSSGridLayout",
2786 }, 2791 },
2787 { 2792 {
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
3185 { 3190 {
3186 name: "-webkit-transition-timing-function", 3191 name: "-webkit-transition-timing-function",
3187 alias_for: "transition-timing-function", 3192 alias_for: "transition-timing-function",
3188 }, 3193 },
3189 { 3194 {
3190 name: "-webkit-user-select", 3195 name: "-webkit-user-select",
3191 alias_for: "user-select", 3196 alias_for: "user-select",
3192 }, 3197 },
3193 ], 3198 ],
3194 } 3199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698