| 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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1682 { | 1682 { |
| 1683 name: "tab-size", | 1683 name: "tab-size", |
| 1684 api_class: true, | 1684 api_class: true, |
| 1685 api_methods: ["parseSingleValue"], | 1685 api_methods: ["parseSingleValue"], |
| 1686 converter: "convertLengthOrTabSpaces", | 1686 converter: "convertLengthOrTabSpaces", |
| 1687 inherited: true, | 1687 inherited: true, |
| 1688 type_name: "TabSize", | 1688 type_name: "TabSize", |
| 1689 }, | 1689 }, |
| 1690 { | 1690 { |
| 1691 name: "text-align", | 1691 name: "text-align", |
| 1692 getter: "GetTextAlign", |
| 1692 custom_value: true, | 1693 custom_value: true, |
| 1693 inherited: true, | 1694 inherited: true, |
| 1694 initial_keyword: "start", | 1695 initial_keyword: "start", |
| 1695 keyword_only: true, | 1696 keyword_only: true, |
| 1696 keywords: [ | 1697 keywords: [ |
| 1697 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk
itCenter", "start", "end", | 1698 "left", "right", "center", "justify", "webkitLeft", "webkitRight", "webk
itCenter", "start", "end", |
| 1698 ], | 1699 ], |
| 1699 }, | 1700 }, |
| 1700 { | 1701 { |
| 1701 name: "text-align-last", | 1702 name: "text-align-last", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 name: "transform", | 1822 name: "transform", |
| 1822 converter: "convertTransformOperations", | 1823 converter: "convertTransformOperations", |
| 1823 interpolable: true, | 1824 interpolable: true, |
| 1824 keywords: ["none"], | 1825 keywords: ["none"], |
| 1825 typedom_types: ["Transform"], | 1826 typedom_types: ["Transform"], |
| 1826 }, | 1827 }, |
| 1827 { | 1828 { |
| 1828 name: "transform-origin", | 1829 name: "transform-origin", |
| 1829 api_class: true, | 1830 api_class: true, |
| 1830 api_methods: ["parseSingleValue"], | 1831 api_methods: ["parseSingleValue"], |
| 1831 converter: "convertTransformOrigin", | 1832 converter: "ConvertTransformOrigin", |
| 1833 getter: "GetTransformOrigin", |
| 1832 interpolable: true, | 1834 interpolable: true, |
| 1833 }, | 1835 }, |
| 1834 { | 1836 { |
| 1835 name: "transform-style", | 1837 name: "transform-style", |
| 1836 name_for_methods: "TransformStyle3D", | 1838 name_for_methods: "TransformStyle3D", |
| 1837 }, | 1839 }, |
| 1838 { | 1840 { |
| 1839 name: "translate", | 1841 name: "translate", |
| 1840 api_class: true, | 1842 api_class: true, |
| 1841 api_methods: ["parseSingleValue"], | 1843 api_methods: ["parseSingleValue"], |
| (...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3040 { | 3042 { |
| 3041 name: "-webkit-transition-timing-function", | 3043 name: "-webkit-transition-timing-function", |
| 3042 alias_for: "transition-timing-function", | 3044 alias_for: "transition-timing-function", |
| 3043 }, | 3045 }, |
| 3044 { | 3046 { |
| 3045 name: "-webkit-user-select", | 3047 name: "-webkit-user-select", |
| 3046 alias_for: "user-select", | 3048 alias_for: "user-select", |
| 3047 }, | 3049 }, |
| 3048 ], | 3050 ], |
| 3049 } | 3051 } |
| OLD | NEW |