| 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 2162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2173 api_methods: ["parseSingleValue"], | 2173 api_methods: ["parseSingleValue"], |
| 2174 converter: "ConvertComputedLength<short>", | 2174 converter: "ConvertComputedLength<short>", |
| 2175 inherited: true, | 2175 inherited: true, |
| 2176 interpolable: true, | 2176 interpolable: true, |
| 2177 name_for_methods: "VerticalBorderSpacing", | 2177 name_for_methods: "VerticalBorderSpacing", |
| 2178 }, | 2178 }, |
| 2179 { | 2179 { |
| 2180 name: "-webkit-box-align", | 2180 name: "-webkit-box-align", |
| 2181 type_name: "EBoxAlignment", | 2181 type_name: "EBoxAlignment", |
| 2182 }, | 2182 }, |
| 2183 "-webkit-box-decoration-break", | 2183 { |
| 2184 name: "-webkit-box-decoration-break", |
| 2185 field_template: "keyword", |
| 2186 field_group: "box", |
| 2187 keywords: ["slice", "clone"], |
| 2188 default_value: "slice", |
| 2189 }, |
| 2184 { | 2190 { |
| 2185 name: "-webkit-box-direction", | 2191 name: "-webkit-box-direction", |
| 2186 independent: true, | 2192 independent: true, |
| 2187 inherited: true, | 2193 inherited: true, |
| 2188 default_value: "normal", | 2194 default_value: "normal", |
| 2189 field_template: "keyword", | 2195 field_template: "keyword", |
| 2190 keywords: ["normal", "reverse"], | 2196 keywords: ["normal", "reverse"], |
| 2191 }, | 2197 }, |
| 2192 { | 2198 { |
| 2193 name: "-webkit-box-flex", | 2199 name: "-webkit-box-flex", |
| (...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3315 { | 3321 { |
| 3316 name: "-webkit-transition-timing-function", | 3322 name: "-webkit-transition-timing-function", |
| 3317 alias_for: "transition-timing-function", | 3323 alias_for: "transition-timing-function", |
| 3318 }, | 3324 }, |
| 3319 { | 3325 { |
| 3320 name: "-webkit-user-select", | 3326 name: "-webkit-user-select", |
| 3321 alias_for: "user-select", | 3327 alias_for: "user-select", |
| 3322 }, | 3328 }, |
| 3323 ], | 3329 ], |
| 3324 } | 3330 } |
| OLD | NEW |