| 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 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1356 is_descriptor: true, | 1356 is_descriptor: true, |
| 1357 initial: "InitialMinSize", | 1357 initial: "InitialMinSize", |
| 1358 interpolable: true, | 1358 interpolable: true, |
| 1359 }, | 1359 }, |
| 1360 { | 1360 { |
| 1361 name: "mix-blend-mode", | 1361 name: "mix-blend-mode", |
| 1362 name_for_methods: "BlendMode", | 1362 name_for_methods: "BlendMode", |
| 1363 type_name: "blink::WebBlendMode", | 1363 type_name: "blink::WebBlendMode", |
| 1364 }, | 1364 }, |
| 1365 { | 1365 { |
| 1366 name: "motion-offset", | |
| 1367 alias_for: "offset-distance", | |
| 1368 }, | |
| 1369 { | |
| 1370 name: "object-fit", | 1366 name: "object-fit", |
| 1371 type_name: "ObjectFit", | 1367 type_name: "ObjectFit", |
| 1372 }, | 1368 }, |
| 1373 { | 1369 { |
| 1374 name: "object-position", | 1370 name: "object-position", |
| 1375 converter: "ConvertPosition", | 1371 converter: "ConvertPosition", |
| 1376 interpolable: true, | 1372 interpolable: true, |
| 1377 }, | 1373 }, |
| 1378 { | 1374 { |
| 1379 name: "offset-anchor", | 1375 name: "offset-anchor", |
| (...skipping 1785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3165 { | 3161 { |
| 3166 name: "-webkit-transition-timing-function", | 3162 name: "-webkit-transition-timing-function", |
| 3167 alias_for: "transition-timing-function", | 3163 alias_for: "transition-timing-function", |
| 3168 }, | 3164 }, |
| 3169 { | 3165 { |
| 3170 name: "-webkit-user-select", | 3166 name: "-webkit-user-select", |
| 3171 alias_for: "user-select", | 3167 alias_for: "user-select", |
| 3172 }, | 3168 }, |
| 3173 ], | 3169 ], |
| 3174 } | 3170 } |
| OLD | NEW |