OLD | NEW |
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 2668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 2684 name: "place-content", |
2685 longhands: "align-content;justify-content", | 2685 longhands: "align-content;justify-content", |
2686 runtime_flag: "CSSGridLayout", | 2686 runtime_flag: "CSSGridLayout", |
2687 }, | 2687 }, |
2688 { | 2688 { |
| 2689 name: "place-items", |
| 2690 longhands: "align-items;justify-items", |
| 2691 runtime_flag: "CSSGridLayout", |
| 2692 }, |
| 2693 { |
2689 name: "grid-area", | 2694 name: "grid-area", |
2690 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end"
, | 2695 longhands: "grid-row-start;grid-column-start;grid-row-end;grid-column-end"
, |
2691 runtime_flag: "CSSGridLayout", | 2696 runtime_flag: "CSSGridLayout", |
2692 }, | 2697 }, |
2693 { | 2698 { |
2694 name: "grid-column", | 2699 name: "grid-column", |
2695 longhands: "grid-column-start;grid-column-end", | 2700 longhands: "grid-column-start;grid-column-end", |
2696 runtime_flag: "CSSGridLayout", | 2701 runtime_flag: "CSSGridLayout", |
2697 }, | 2702 }, |
2698 { | 2703 { |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3096 { | 3101 { |
3097 name: "-webkit-transition-timing-function", | 3102 name: "-webkit-transition-timing-function", |
3098 alias_for: "transition-timing-function", | 3103 alias_for: "transition-timing-function", |
3099 }, | 3104 }, |
3100 { | 3105 { |
3101 name: "-webkit-user-select", | 3106 name: "-webkit-user-select", |
3102 alias_for: "user-select", | 3107 alias_for: "user-select", |
3103 }, | 3108 }, |
3104 ], | 3109 ], |
3105 } | 3110 } |
OLD | NEW |