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

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

Issue 2662573002: [css-align] Implement place-content alignment shorthand (Closed)
Patch Set: Patch rebased. Created 3 years, 9 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 2663 matching lines...) Expand 10 before | Expand all | Expand 10 after
2674 { 2674 {
2675 name: "font-variant", 2675 name: "font-variant",
2676 longhands: "font-variant-ligatures;font-variant-caps;font-variant-numeric" , 2676 longhands: "font-variant-ligatures;font-variant-caps;font-variant-numeric" ,
2677 }, 2677 },
2678 { 2678 {
2679 name: "grid", 2679 name: "grid",
2680 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", 2680 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",
2681 runtime_flag: "CSSGridLayout", 2681 runtime_flag: "CSSGridLayout",
2682 }, 2682 },
2683 { 2683 {
2684 name: "place-content",
2685 longhands: "align-content;justify-content",
2686 runtime_flag: "CSSGridLayout",
2687 },
2688 {
2684 name: "grid-area", 2689 name: "grid-area",
2685 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" , 2690 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end" ,
2686 runtime_flag: "CSSGridLayout", 2691 runtime_flag: "CSSGridLayout",
2687 }, 2692 },
2688 { 2693 {
2689 name: "grid-column", 2694 name: "grid-column",
2690 longhands: "grid-column-start;grid-column-end", 2695 longhands: "grid-column-start;grid-column-end",
2691 runtime_flag: "CSSGridLayout", 2696 runtime_flag: "CSSGridLayout",
2692 }, 2697 },
2693 { 2698 {
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
3091 { 3096 {
3092 name: "-webkit-transition-timing-function", 3097 name: "-webkit-transition-timing-function",
3093 alias_for: "transition-timing-function", 3098 alias_for: "transition-timing-function",
3094 }, 3099 },
3095 { 3100 {
3096 name: "-webkit-user-select", 3101 name: "-webkit-user-select",
3097 alias_for: "user-select", 3102 alias_for: "user-select",
3098 }, 3103 },
3099 ], 3104 ],
3100 } 3105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698