| 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 1911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1922 type_name: "TouchAction", | 1922 type_name: "TouchAction", |
| 1923 }, | 1923 }, |
| 1924 { | 1924 { |
| 1925 name: "transform", | 1925 name: "transform", |
| 1926 converter: "convertTransformOperations", | 1926 converter: "convertTransformOperations", |
| 1927 interpolable: true, | 1927 interpolable: true, |
| 1928 keywords: ["none"], | 1928 keywords: ["none"], |
| 1929 typedom_types: ["Transform"], | 1929 typedom_types: ["Transform"], |
| 1930 }, | 1930 }, |
| 1931 { | 1931 { |
| 1932 name: "transform-box", |
| 1933 field_template: "keyword", |
| 1934 keywords: ["border-box", "fill-box", "view-box"], |
| 1935 default_value: "border-box", |
| 1936 runtime_flag: "CSSTransformBox", |
| 1937 }, |
| 1938 { |
| 1932 name: "transform-origin", | 1939 name: "transform-origin", |
| 1933 api_class: true, | 1940 api_class: true, |
| 1934 api_methods: ["parseSingleValue"], | 1941 api_methods: ["parseSingleValue"], |
| 1935 converter: "convertTransformOrigin", | 1942 converter: "convertTransformOrigin", |
| 1936 interpolable: true, | 1943 interpolable: true, |
| 1937 }, | 1944 }, |
| 1938 { | 1945 { |
| 1939 name: "transform-style", | 1946 name: "transform-style", |
| 1940 name_for_methods: "TransformStyle3D", | 1947 name_for_methods: "TransformStyle3D", |
| 1941 }, | 1948 }, |
| (...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3176 { | 3183 { |
| 3177 name: "-webkit-transition-timing-function", | 3184 name: "-webkit-transition-timing-function", |
| 3178 alias_for: "transition-timing-function", | 3185 alias_for: "transition-timing-function", |
| 3179 }, | 3186 }, |
| 3180 { | 3187 { |
| 3181 name: "-webkit-user-select", | 3188 name: "-webkit-user-select", |
| 3182 alias_for: "user-select", | 3189 alias_for: "user-select", |
| 3183 }, | 3190 }, |
| 3184 ], | 3191 ], |
| 3185 } | 3192 } |
| OLD | NEW |