| 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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 name: "content", | 904 name: "content", |
| 905 api_class: true, | 905 api_class: true, |
| 906 api_methods: ["parseSingleValue"], | 906 api_methods: ["parseSingleValue"], |
| 907 custom_all: true, | 907 custom_all: true, |
| 908 separator: ",", | 908 separator: ",", |
| 909 typedom_types: ["Image"], | 909 typedom_types: ["Image"], |
| 910 }, | 910 }, |
| 911 { | 911 { |
| 912 name: "counter-increment", | 912 name: "counter-increment", |
| 913 api_class: true, | 913 api_class: true, |
| 914 api_methods: ["parseSingleValue"], | |
| 915 custom_all: true, | 914 custom_all: true, |
| 916 }, | 915 }, |
| 917 { | 916 { |
| 918 name: "counter-reset", | 917 name: "counter-reset", |
| 919 api_class: true, | 918 api_class: true, |
| 920 custom_all: true, | 919 custom_all: true, |
| 921 }, | 920 }, |
| 922 { | 921 { |
| 923 name: "cursor", | 922 name: "cursor", |
| 924 api_class: true, | 923 api_class: true, |
| (...skipping 2241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3166 { | 3165 { |
| 3167 name: "-webkit-transition-timing-function", | 3166 name: "-webkit-transition-timing-function", |
| 3168 alias_for: "transition-timing-function", | 3167 alias_for: "transition-timing-function", |
| 3169 }, | 3168 }, |
| 3170 { | 3169 { |
| 3171 name: "-webkit-user-select", | 3170 name: "-webkit-user-select", |
| 3172 alias_for: "user-select", | 3171 alias_for: "user-select", |
| 3173 }, | 3172 }, |
| 3174 ], | 3173 ], |
| 3175 } | 3174 } |
| OLD | NEW |