| 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 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 inherited: false, | 1629 inherited: false, |
| 1630 default_value: "auto", | 1630 default_value: "auto", |
| 1631 field_template: "keyword", | 1631 field_template: "keyword", |
| 1632 keywords: [ | 1632 keywords: [ |
| 1633 "visible", "none", "auto", | 1633 "visible", "none", "auto", |
| 1634 ], | 1634 ], |
| 1635 }, | 1635 }, |
| 1636 { | 1636 { |
| 1637 name: "overflow-wrap", | 1637 name: "overflow-wrap", |
| 1638 inherited: true, | 1638 inherited: true, |
| 1639 field_template: "storage_only", | 1639 field_template: "keyword", |
| 1640 type_name: "EOverflowWrap", | 1640 keywords: ["normal", "break-word"], |
| 1641 default_value: "EOverflowWrap::kNormal", | 1641 default_value: "normal", |
| 1642 field_size: 1, | 1642 field_size: 1, |
| 1643 field_group: "rare-inherited", | 1643 field_group: "rare-inherited", |
| 1644 }, | 1644 }, |
| 1645 { | 1645 { |
| 1646 name: "overflow-x", | 1646 name: "overflow-x", |
| 1647 default_value: "visible", | 1647 default_value: "visible", |
| 1648 field_template: "keyword", | 1648 field_template: "keyword", |
| 1649 keywords: [ | 1649 keywords: [ |
| 1650 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w
ebkit-paged-y", | 1650 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w
ebkit-paged-y", |
| 1651 ], | 1651 ], |
| (...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3492 { | 3492 { |
| 3493 name: "-webkit-transition-timing-function", | 3493 name: "-webkit-transition-timing-function", |
| 3494 alias_for: "transition-timing-function", | 3494 alias_for: "transition-timing-function", |
| 3495 }, | 3495 }, |
| 3496 { | 3496 { |
| 3497 name: "-webkit-user-select", | 3497 name: "-webkit-user-select", |
| 3498 alias_for: "user-select", | 3498 alias_for: "user-select", |
| 3499 }, | 3499 }, |
| 3500 ], | 3500 ], |
| 3501 } | 3501 } |
| OLD | NEW |