| 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 custom_value: true, | 515 custom_value: true, |
| 516 font: true, | 516 font: true, |
| 517 inherited: true, | 517 inherited: true, |
| 518 priority: "High", | 518 priority: "High", |
| 519 }, | 519 }, |
| 520 { | 520 { |
| 521 name: "text-orientation", | 521 name: "text-orientation", |
| 522 custom_value: true, | 522 custom_value: true, |
| 523 inherited: true, | 523 inherited: true, |
| 524 priority: "High", | 524 priority: "High", |
| 525 field_template: "storage_only", | 525 field_template: "keyword", |
| 526 type_name: "TextOrientation", | 526 keywords: ["sideways", "mixed", "upright"], |
| 527 default_value: "TextOrientation::kMixed", | 527 default_value: "mixed", |
| 528 field_size: 2, | 528 field_size: 2, |
| 529 field_group: "rare-inherited", | 529 field_group: "rare-inherited", |
| 530 getter: "GetTextOrientation" |
| 530 }, | 531 }, |
| 531 { | 532 { |
| 532 name: "-webkit-text-orientation", | 533 name: "-webkit-text-orientation", |
| 533 custom_value: true, | 534 custom_value: true, |
| 534 inherited: true, | 535 inherited: true, |
| 535 priority: "High", | 536 priority: "High", |
| 536 type_name: "TextOrientation", | 537 type_name: "TextOrientation", |
| 537 }, | 538 }, |
| 538 { | 539 { |
| 539 name: "writing-mode", | 540 name: "writing-mode", |
| (...skipping 2983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3523 { | 3524 { |
| 3524 name: "-webkit-transition-timing-function", | 3525 name: "-webkit-transition-timing-function", |
| 3525 alias_for: "transition-timing-function", | 3526 alias_for: "transition-timing-function", |
| 3526 }, | 3527 }, |
| 3527 { | 3528 { |
| 3528 name: "-webkit-user-select", | 3529 name: "-webkit-user-select", |
| 3529 alias_for: "user-select", | 3530 alias_for: "user-select", |
| 3530 }, | 3531 }, |
| 3531 ], | 3532 ], |
| 3532 } | 3533 } |
| OLD | NEW |