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 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 1366 name: "motion-offset", |
1367 alias_for: "offset-distance", | 1367 alias_for: "offset-distance", |
1368 }, | 1368 }, |
1369 { | 1369 { |
1370 name: "motion-path", | |
1371 alias_for: "offset-path", | |
1372 }, | |
1373 { | |
1374 name: "motion-rotation", | 1370 name: "motion-rotation", |
1375 alias_for: "offset-rotation", | 1371 alias_for: "offset-rotation", |
1376 }, | 1372 }, |
1377 { | 1373 { |
1378 name: "object-fit", | 1374 name: "object-fit", |
1379 type_name: "ObjectFit", | 1375 type_name: "ObjectFit", |
1380 }, | 1376 }, |
1381 { | 1377 { |
1382 name: "object-position", | 1378 name: "object-position", |
1383 converter: "ConvertPosition", | 1379 converter: "ConvertPosition", |
(...skipping 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3181 { | 3177 { |
3182 name: "-webkit-transition-timing-function", | 3178 name: "-webkit-transition-timing-function", |
3183 alias_for: "transition-timing-function", | 3179 alias_for: "transition-timing-function", |
3184 }, | 3180 }, |
3185 { | 3181 { |
3186 name: "-webkit-user-select", | 3182 name: "-webkit-user-select", |
3187 alias_for: "user-select", | 3183 alias_for: "user-select", |
3188 }, | 3184 }, |
3189 ], | 3185 ], |
3190 } | 3186 } |
OLD | NEW |