| 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 2800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2811 }, | 2811 }, |
| 2812 { | 2812 { |
| 2813 name: "margin", | 2813 name: "margin", |
| 2814 longhands: "margin-top;margin-right;margin-bottom;margin-left", | 2814 longhands: "margin-top;margin-right;margin-bottom;margin-left", |
| 2815 }, | 2815 }, |
| 2816 { | 2816 { |
| 2817 name: "marker", | 2817 name: "marker", |
| 2818 longhands: "marker-start;marker-mid;marker-end", | 2818 longhands: "marker-start;marker-mid;marker-end", |
| 2819 }, | 2819 }, |
| 2820 { | 2820 { |
| 2821 name: "motion", | |
| 2822 longhands: "offset-path;offset-distance;offset-rotation", | |
| 2823 }, | |
| 2824 { | |
| 2825 name: "offset", | 2821 name: "offset", |
| 2826 longhands: "offset-path;offset-distance;offset-rotation", | 2822 longhands: "offset-path;offset-distance;offset-rotation", |
| 2827 }, | 2823 }, |
| 2828 { | 2824 { |
| 2829 name: "outline", | 2825 name: "outline", |
| 2830 longhands: "outline-color;outline-style;outline-width", | 2826 longhands: "outline-color;outline-style;outline-width", |
| 2831 }, | 2827 }, |
| 2832 { | 2828 { |
| 2833 name: "overflow", | 2829 name: "overflow", |
| 2834 longhands: "overflow-x;overflow-y", | 2830 longhands: "overflow-x;overflow-y", |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3191 { | 3187 { |
| 3192 name: "-webkit-transition-timing-function", | 3188 name: "-webkit-transition-timing-function", |
| 3193 alias_for: "transition-timing-function", | 3189 alias_for: "transition-timing-function", |
| 3194 }, | 3190 }, |
| 3195 { | 3191 { |
| 3196 name: "-webkit-user-select", | 3192 name: "-webkit-user-select", |
| 3197 alias_for: "user-select", | 3193 alias_for: "user-select", |
| 3198 }, | 3194 }, |
| 3199 ], | 3195 ], |
| 3200 } | 3196 } |
| OLD | NEW |