| 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 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1915 type_name: "unsigned int", | 1915 type_name: "unsigned int", |
| 1916 }, | 1916 }, |
| 1917 "-webkit-box-orient", | 1917 "-webkit-box-orient", |
| 1918 "-webkit-box-pack", | 1918 "-webkit-box-pack", |
| 1919 { | 1919 { |
| 1920 name: "-webkit-box-reflect", | 1920 name: "-webkit-box-reflect", |
| 1921 converter: "convertBoxReflect", | 1921 converter: "convertBoxReflect", |
| 1922 }, | 1922 }, |
| 1923 { | 1923 { |
| 1924 name: "column-count", | 1924 name: "column-count", |
| 1925 api_class: true, |
| 1926 api_methods: ["parseSingleValue"], |
| 1925 custom_all: true, | 1927 custom_all: true, |
| 1926 interpolable: true, | 1928 interpolable: true, |
| 1927 type_name: "unsigned short", | 1929 type_name: "unsigned short", |
| 1928 }, | 1930 }, |
| 1929 { | 1931 { |
| 1930 name: "column-gap", | 1932 name: "column-gap", |
| 1931 api_class: true, | 1933 api_class: true, |
| 1932 api_methods: ["parseSingleValue"], | 1934 api_methods: ["parseSingleValue"], |
| 1933 converter: "convertComputedLength<float>", | 1935 converter: "convertComputedLength<float>", |
| 1934 custom_all: true, | 1936 custom_all: true, |
| (...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2958 { | 2960 { |
| 2959 name: "-webkit-transition-timing-function", | 2961 name: "-webkit-transition-timing-function", |
| 2960 alias_for: "transition-timing-function", | 2962 alias_for: "transition-timing-function", |
| 2961 }, | 2963 }, |
| 2962 { | 2964 { |
| 2963 name: "-webkit-user-select", | 2965 name: "-webkit-user-select", |
| 2964 alias_for: "user-select", | 2966 alias_for: "user-select", |
| 2965 }, | 2967 }, |
| 2966 ], | 2968 ], |
| 2967 } | 2969 } |
| OLD | NEW |