| 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 2064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2075 runtime_flag: "CSS3TextDecorations", | 2075 runtime_flag: "CSS3TextDecorations", |
| 2076 type_name: "TextDecorationStyle", | 2076 type_name: "TextDecorationStyle", |
| 2077 }, | 2077 }, |
| 2078 { | 2078 { |
| 2079 name: "text-indent", | 2079 name: "text-indent", |
| 2080 api_class: true, | 2080 api_class: true, |
| 2081 api_methods: ["parseSingleValue"], | 2081 api_methods: ["parseSingleValue"], |
| 2082 custom_all: true, | 2082 custom_all: true, |
| 2083 inherited: true, | 2083 inherited: true, |
| 2084 interpolable: true, | 2084 interpolable: true, |
| 2085 field_template: "storage_only", | 2085 field_template: "external", |
| 2086 type_name: "Length", | 2086 type_name: "Length", |
| 2087 include_paths: ["platform/Length.h"], | 2087 include_paths: ["platform/Length.h"], |
| 2088 default_value: "Length(kFixed)", | 2088 default_value: "Length(kFixed)", |
| 2089 field_group: "rare-inherited", | 2089 field_group: "rare-inherited", |
| 2090 }, | 2090 }, |
| 2091 { | 2091 { |
| 2092 name: "text-justify", | 2092 name: "text-justify", |
| 2093 inherited: true, | 2093 inherited: true, |
| 2094 runtime_flag: "CSS3Text", | 2094 runtime_flag: "CSS3Text", |
| 2095 getter: "GetTextJustify", | 2095 getter: "GetTextJustify", |
| (...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3523 { | 3523 { |
| 3524 name: "-webkit-transition-timing-function", | 3524 name: "-webkit-transition-timing-function", |
| 3525 alias_for: "transition-timing-function", | 3525 alias_for: "transition-timing-function", |
| 3526 }, | 3526 }, |
| 3527 { | 3527 { |
| 3528 name: "-webkit-user-select", | 3528 name: "-webkit-user-select", |
| 3529 alias_for: "user-select", | 3529 alias_for: "user-select", |
| 3530 }, | 3530 }, |
| 3531 ], | 3531 ], |
| 3532 } | 3532 } |
| OLD | NEW |