| 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 1997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2008 default_value: "start", | 2008 default_value: "start", |
| 2009 field_template: "keyword", | 2009 field_template: "keyword", |
| 2010 getter: "GetTextAlign", | 2010 getter: "GetTextAlign", |
| 2011 keywords: [ | 2011 keywords: [ |
| 2012 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk
itCenter", "start", "end", | 2012 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk
itCenter", "start", "end", |
| 2013 ], | 2013 ], |
| 2014 }, | 2014 }, |
| 2015 { | 2015 { |
| 2016 name: "text-align-last", | 2016 name: "text-align-last", |
| 2017 inherited: true, | 2017 inherited: true, |
| 2018 field_template: "storage_only", | 2018 field_template: "keyword", |
| 2019 type_name: "TextAlignLast", | 2019 keywords: ["auto", "start", "end", "left", "right", "center", "justify"], |
| 2020 default_value: "TextAlignLast::kAuto", | 2020 default_value: "auto", |
| 2021 field_size: 3, | 2021 field_size: 3, |
| 2022 field_group: "rare-inherited", | 2022 field_group: "rare-inherited", |
| 2023 }, | 2023 }, |
| 2024 { | 2024 { |
| 2025 name: "text-anchor", | 2025 name: "text-anchor", |
| 2026 inherited: true, | 2026 inherited: true, |
| 2027 svg: true, | 2027 svg: true, |
| 2028 }, | 2028 }, |
| 2029 { | 2029 { |
| 2030 name: "text-combine-upright", | 2030 name: "text-combine-upright", |
| (...skipping 1494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3525 { | 3525 { |
| 3526 name: "-webkit-transition-timing-function", | 3526 name: "-webkit-transition-timing-function", |
| 3527 alias_for: "transition-timing-function", | 3527 alias_for: "transition-timing-function", |
| 3528 }, | 3528 }, |
| 3529 { | 3529 { |
| 3530 name: "-webkit-user-select", | 3530 name: "-webkit-user-select", |
| 3531 alias_for: "user-select", | 3531 alias_for: "user-select", |
| 3532 }, | 3532 }, |
| 3533 ], | 3533 ], |
| 3534 } | 3534 } |
| OLD | NEW |