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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 }, | 916 }, |
917 { | 917 { |
918 name: "counter-increment", | 918 name: "counter-increment", |
919 api_class: true, | 919 api_class: true, |
920 api_methods: ["parseSingleValue"], | 920 api_methods: ["parseSingleValue"], |
921 custom_all: true, | 921 custom_all: true, |
922 }, | 922 }, |
923 { | 923 { |
924 name: "counter-reset", | 924 name: "counter-reset", |
925 api_class: true, | 925 api_class: true, |
| 926 api_methods: ["parseSingleValue"], |
926 custom_all: true, | 927 custom_all: true, |
927 }, | 928 }, |
928 { | 929 { |
929 name: "cursor", | 930 name: "cursor", |
930 api_class: true, | 931 api_class: true, |
931 api_methods: ["parseSingleValue"], | 932 api_methods: ["parseSingleValue"], |
932 custom_all: true, | 933 custom_all: true, |
933 inherited: true, | 934 inherited: true, |
934 field_template: "keyword", | 935 field_template: "keyword", |
935 keywords: [ | 936 keywords: [ |
(...skipping 2248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3184 { | 3185 { |
3185 name: "-webkit-transition-timing-function", | 3186 name: "-webkit-transition-timing-function", |
3186 alias_for: "transition-timing-function", | 3187 alias_for: "transition-timing-function", |
3187 }, | 3188 }, |
3188 { | 3189 { |
3189 name: "-webkit-user-select", | 3190 name: "-webkit-user-select", |
3190 alias_for: "user-select", | 3191 alias_for: "user-select", |
3191 }, | 3192 }, |
3192 ], | 3193 ], |
3193 } | 3194 } |
OLD | NEW |