| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 { | 836 { |
| 837 name: "buffered-rendering", | 837 name: "buffered-rendering", |
| 838 svg: true, | 838 svg: true, |
| 839 }, | 839 }, |
| 840 { | 840 { |
| 841 name: "caption-side", | 841 name: "caption-side", |
| 842 independent: true, | 842 independent: true, |
| 843 inherited: true, | 843 inherited: true, |
| 844 default_value: "top", | 844 default_value: "top", |
| 845 field_template: "keyword", | 845 field_template: "keyword", |
| 846 keywords: ["top", "bottom", "left", "right"], | 846 keywords: ["top", "bottom"], |
| 847 }, | 847 }, |
| 848 { | 848 { |
| 849 name: "caret-color", | 849 name: "caret-color", |
| 850 api_class: true, | 850 api_class: true, |
| 851 api_methods: ["parseSingleValue"], | 851 api_methods: ["parseSingleValue"], |
| 852 custom_all: true, | 852 custom_all: true, |
| 853 inherited: true, | 853 inherited: true, |
| 854 interpolable: true, | 854 interpolable: true, |
| 855 }, | 855 }, |
| 856 { | 856 { |
| (...skipping 2334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3191 { | 3191 { |
| 3192 name: "-webkit-transition-timing-function", | 3192 name: "-webkit-transition-timing-function", |
| 3193 alias_for: "transition-timing-function", | 3193 alias_for: "transition-timing-function", |
| 3194 }, | 3194 }, |
| 3195 { | 3195 { |
| 3196 name: "-webkit-user-select", | 3196 name: "-webkit-user-select", |
| 3197 alias_for: "user-select", | 3197 alias_for: "user-select", |
| 3198 }, | 3198 }, |
| 3199 ], | 3199 ], |
| 3200 } | 3200 } |
| OLD | NEW |