| 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 2166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2177 name_for_methods: "HorizontalBorderSpacing", | 2177 name_for_methods: "HorizontalBorderSpacing", |
| 2178 field_template: "primitive", | 2178 field_template: "primitive", |
| 2179 type_name: "short", | 2179 type_name: "short", |
| 2180 field_group: "inherited", | 2180 field_group: "inherited", |
| 2181 default_value: "0", | 2181 default_value: "0", |
| 2182 }, | 2182 }, |
| 2183 { | 2183 { |
| 2184 name: "-webkit-border-image", | 2184 name: "-webkit-border-image", |
| 2185 api_class: true, | 2185 api_class: true, |
| 2186 custom_value: true, | 2186 custom_value: true, |
| 2187 initial: "InitialNinePieceImage", | |
| 2188 }, | 2187 }, |
| 2189 { | 2188 { |
| 2190 name: "-webkit-border-vertical-spacing", | 2189 name: "-webkit-border-vertical-spacing", |
| 2191 api_class: "CSSPropertyAPIWebkitBorderSpacing", | 2190 api_class: "CSSPropertyAPIWebkitBorderSpacing", |
| 2192 api_methods: ["parseSingleValue"], | 2191 api_methods: ["parseSingleValue"], |
| 2193 converter: "ConvertComputedLength<short>", | 2192 converter: "ConvertComputedLength<short>", |
| 2194 inherited: true, | 2193 inherited: true, |
| 2195 interpolable: true, | 2194 interpolable: true, |
| 2196 name_for_methods: "VerticalBorderSpacing", | 2195 name_for_methods: "VerticalBorderSpacing", |
| 2197 field_template: "primitive", | 2196 field_template: "primitive", |
| (...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3343 { | 3342 { |
| 3344 name: "-webkit-transition-timing-function", | 3343 name: "-webkit-transition-timing-function", |
| 3345 alias_for: "transition-timing-function", | 3344 alias_for: "transition-timing-function", |
| 3346 }, | 3345 }, |
| 3347 { | 3346 { |
| 3348 name: "-webkit-user-select", | 3347 name: "-webkit-user-select", |
| 3349 alias_for: "user-select", | 3348 alias_for: "user-select", |
| 3350 }, | 3349 }, |
| 3351 ], | 3350 ], |
| 3352 } | 3351 } |
| OLD | NEW |