| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 name_for_methods: "FeatureSettings", | 482 name_for_methods: "FeatureSettings", |
| 483 priority: "High", | 483 priority: "High", |
| 484 }, | 484 }, |
| 485 { | 485 { |
| 486 name: "font-variation-settings", | 486 name: "font-variation-settings", |
| 487 api_class: true, | 487 api_class: true, |
| 488 api_methods: ["parseSingleValue"], | 488 api_methods: ["parseSingleValue"], |
| 489 converter: "ConvertFontVariationSettings", | 489 converter: "ConvertFontVariationSettings", |
| 490 font: true, | 490 font: true, |
| 491 inherited: true, | 491 inherited: true, |
| 492 interpolable: true, |
| 492 name_for_methods: "VariationSettings", | 493 name_for_methods: "VariationSettings", |
| 493 priority: "High", | 494 priority: "High", |
| 494 runtime_flag: "CSSVariableFonts", | 495 runtime_flag: "CSSVariableFonts", |
| 495 }, | 496 }, |
| 496 { | 497 { |
| 497 name: "-webkit-font-smoothing", | 498 name: "-webkit-font-smoothing", |
| 498 font: true, | 499 font: true, |
| 499 inherited: true, | 500 inherited: true, |
| 500 priority: "High", | 501 priority: "High", |
| 501 type_name: "FontSmoothingMode", | 502 type_name: "FontSmoothingMode", |
| (...skipping 2833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3335 { | 3336 { |
| 3336 name: "-webkit-transition-timing-function", | 3337 name: "-webkit-transition-timing-function", |
| 3337 alias_for: "transition-timing-function", | 3338 alias_for: "transition-timing-function", |
| 3338 }, | 3339 }, |
| 3339 { | 3340 { |
| 3340 name: "-webkit-user-select", | 3341 name: "-webkit-user-select", |
| 3341 alias_for: "user-select", | 3342 alias_for: "user-select", |
| 3342 }, | 3343 }, |
| 3343 ], | 3344 ], |
| 3344 } | 3345 } |
| OLD | NEW |