| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 is_descriptor: true, | 458 is_descriptor: true, |
| 459 font: true, | 459 font: true, |
| 460 inherited: true, | 460 inherited: true, |
| 461 interpolable: true, | 461 interpolable: true, |
| 462 name_for_methods: "Weight", | 462 name_for_methods: "Weight", |
| 463 priority: "High", | 463 priority: "High", |
| 464 type_name: "FontWeight", | 464 type_name: "FontWeight", |
| 465 }, | 465 }, |
| 466 { | 466 { |
| 467 name: "font-feature-settings", | 467 name: "font-feature-settings", |
| 468 api_class: true, |
| 469 api_methods: ["parseSingleValue"], |
| 468 converter: "ConvertFontFeatureSettings", | 470 converter: "ConvertFontFeatureSettings", |
| 469 is_descriptor: true, | 471 is_descriptor: true, |
| 470 font: true, | 472 font: true, |
| 471 inherited: true, | 473 inherited: true, |
| 472 name_for_methods: "FeatureSettings", | 474 name_for_methods: "FeatureSettings", |
| 473 priority: "High", | 475 priority: "High", |
| 474 }, | 476 }, |
| 475 { | 477 { |
| 476 name: "font-variation-settings", | 478 name: "font-variation-settings", |
| 477 api_class: true, | 479 api_class: true, |
| (...skipping 2733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3211 { | 3213 { |
| 3212 name: "-webkit-transition-timing-function", | 3214 name: "-webkit-transition-timing-function", |
| 3213 alias_for: "transition-timing-function", | 3215 alias_for: "transition-timing-function", |
| 3214 }, | 3216 }, |
| 3215 { | 3217 { |
| 3216 name: "-webkit-user-select", | 3218 name: "-webkit-user-select", |
| 3217 alias_for: "user-select", | 3219 alias_for: "user-select", |
| 3218 }, | 3220 }, |
| 3219 ], | 3221 ], |
| 3220 } | 3222 } |
| OLD | NEW |