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 1372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1383 converter: "ConvertLengthSizing", | 1383 converter: "ConvertLengthSizing", |
1384 is_descriptor: true, | 1384 is_descriptor: true, |
1385 interpolable: true, | 1385 interpolable: true, |
1386 }, | 1386 }, |
1387 { | 1387 { |
1388 name: "mix-blend-mode", | 1388 name: "mix-blend-mode", |
1389 name_for_methods: "BlendMode", | 1389 name_for_methods: "BlendMode", |
1390 type_name: "blink::WebBlendMode", | 1390 type_name: "blink::WebBlendMode", |
1391 }, | 1391 }, |
1392 { | 1392 { |
1393 name: "motion-offset", | |
1394 alias_for: "offset-distance", | |
1395 }, | |
1396 { | |
1397 name: "object-fit", | 1393 name: "object-fit", |
1398 type_name: "ObjectFit", | 1394 type_name: "ObjectFit", |
1399 }, | 1395 }, |
1400 { | 1396 { |
1401 name: "object-position", | 1397 name: "object-position", |
1402 converter: "ConvertPosition", | 1398 converter: "ConvertPosition", |
1403 interpolable: true, | 1399 interpolable: true, |
1404 }, | 1400 }, |
1405 { | 1401 { |
1406 name: "offset-anchor", | 1402 name: "offset-anchor", |
(...skipping 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3215 { | 3211 { |
3216 name: "-webkit-transition-timing-function", | 3212 name: "-webkit-transition-timing-function", |
3217 alias_for: "transition-timing-function", | 3213 alias_for: "transition-timing-function", |
3218 }, | 3214 }, |
3219 { | 3215 { |
3220 name: "-webkit-user-select", | 3216 name: "-webkit-user-select", |
3221 alias_for: "user-select", | 3217 alias_for: "user-select", |
3222 }, | 3218 }, |
3223 ], | 3219 ], |
3224 } | 3220 } |
OLD | NEW |