| OLD | NEW |
| 1 // This file specifies all the CSS properties we support and the necessary | 1 // This file specifies all the CSS properties we support and the necessary |
| 2 // information for our code generation. The various supported arguments | 2 // information for our code generation. The various supported arguments |
| 3 // are described below with example usage | 3 // are described below with example usage |
| 4 | 4 |
| 5 | 5 |
| 6 // - alias_for=other-property | 6 // - alias_for=other-property |
| 7 // Properties specifying alias_for should be virtually identical to the | 7 // Properties specifying alias_for should be virtually identical to the |
| 8 // properties they alias. Minor parsing differences are allowed as long as | 8 // properties they alias. Minor parsing differences are allowed as long as |
| 9 // the CSSValues created are of the same format of the aliased property. | 9 // the CSSValues created are of the same format of the aliased property. |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 | 79 |
| 80 // Properties with StyleBuilder handling | 80 // Properties with StyleBuilder handling |
| 81 | 81 |
| 82 // High Priority and all other font properties. | 82 // High Priority and all other font properties. |
| 83 // Other properties can depend upon high priority properties (e.g. font-size / e
ms) | 83 // Other properties can depend upon high priority properties (e.g. font-size / e
ms) |
| 84 color interpolable, inherited, custom_all | 84 color interpolable, inherited, custom_all |
| 85 direction inherited, custom_value | 85 direction inherited, custom_value |
| 86 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_
for_methods=FamilyDescription, converter=convertFontFamily | 86 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_
for_methods=FamilyDescription, converter=convertFontFamily |
| 87 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning | 87 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning |
| 88 font-size interpolable, inherited, font, name_for_methods=Size, converter=conver
tFontSize | 88 font-size interpolable, inherited, font, name_for_methods=Size, getter=getSize,
converter=convertFontSize |
| 89 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font,
name_for_methods=SizeAdjust, converter=convertFontSizeAdjust | 89 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font,
name_for_methods=SizeAdjust, converter=convertFontSizeAdjust |
| 90 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch | 90 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch |
| 91 font-style inherited, font, type_name=FontStyle, name_for_methods=Style | 91 font-style inherited, font, type_name=FontStyle, name_for_methods=Style |
| 92 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant | 92 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant |
| 93 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve
rter=convertFontVariantLigatures | 93 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve
rter=convertFontVariantLigatures |
| 94 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method
s=Weight, converter=convertFontWeight | 94 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method
s=Weight, converter=convertFontWeight |
| 95 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert
er=convertFontFeatureSettings | 95 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert
er=convertFontFeatureSettings |
| 96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode | 96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode |
| 97 -webkit-locale inherited, font, custom_value | 97 -webkit-locale inherited, font, custom_value |
| 98 text-orientation inherited, custom_value, type_name=TextOrientation | 98 text-orientation inherited, custom_value, type_name=TextOrientation |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 -webkit-shape-margin alias_for=shape-margin | 555 -webkit-shape-margin alias_for=shape-margin |
| 556 -webkit-shape-outside alias_for=shape-outside | 556 -webkit-shape-outside alias_for=shape-outside |
| 557 -webkit-transform alias_for=transform | 557 -webkit-transform alias_for=transform |
| 558 -webkit-transform-origin alias_for=transform-origin | 558 -webkit-transform-origin alias_for=transform-origin |
| 559 -webkit-transform-style alias_for=transform-style | 559 -webkit-transform-style alias_for=transform-style |
| 560 -webkit-transition alias_for=transition | 560 -webkit-transition alias_for=transition |
| 561 -webkit-transition-delay alias_for=transition-delay | 561 -webkit-transition-delay alias_for=transition-delay |
| 562 -webkit-transition-duration alias_for=transition-duration | 562 -webkit-transition-duration alias_for=transition-duration |
| 563 -webkit-transition-property alias_for=transition-property | 563 -webkit-transition-property alias_for=transition-property |
| 564 -webkit-transition-timing-function alias_for=transition-timing-function | 564 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |