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 1945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1956 interpolable: true, | 1956 interpolable: true, |
1957 }, | 1957 }, |
1958 { | 1958 { |
1959 name: "column-span", | 1959 name: "column-span", |
1960 api_class: true, | 1960 api_class: true, |
1961 api_methods: ["parseSingleValue"], | 1961 api_methods: ["parseSingleValue"], |
1962 type_name: "ColumnSpan", | 1962 type_name: "ColumnSpan", |
1963 }, | 1963 }, |
1964 { | 1964 { |
1965 name: "column-width", | 1965 name: "column-width", |
| 1966 api_class: true, |
| 1967 api_methods: ["parseSingleValue"], |
1966 converter: "convertComputedLength<float>", | 1968 converter: "convertComputedLength<float>", |
1967 custom_all: true, | 1969 custom_all: true, |
1968 interpolable: true, | 1970 interpolable: true, |
1969 }, | 1971 }, |
1970 { | 1972 { |
1971 name: "-webkit-highlight", | 1973 name: "-webkit-highlight", |
1972 api_class: true, | 1974 api_class: true, |
1973 api_methods: ["parseSingleValue"], | 1975 api_methods: ["parseSingleValue"], |
1974 converter: "convertString<CSSValueNone>", | 1976 converter: "convertString<CSSValueNone>", |
1975 inherited: true, | 1977 inherited: true, |
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2960 { | 2962 { |
2961 name: "-webkit-transition-timing-function", | 2963 name: "-webkit-transition-timing-function", |
2962 alias_for: "transition-timing-function", | 2964 alias_for: "transition-timing-function", |
2963 }, | 2965 }, |
2964 { | 2966 { |
2965 name: "-webkit-user-select", | 2967 name: "-webkit-user-select", |
2966 alias_for: "user-select", | 2968 alias_for: "user-select", |
2967 }, | 2969 }, |
2968 ], | 2970 ], |
2969 } | 2971 } |
OLD | NEW |