| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning | 144 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning |
| 145 font-size interpolable, inherited, font, name_for_methods=Size, getter=getSize,
converter=convertFontSize | 145 font-size interpolable, inherited, font, name_for_methods=Size, getter=getSize,
converter=convertFontSize |
| 146 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font,
name_for_methods=SizeAdjust, converter=convertFontSizeAdjust | 146 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font,
name_for_methods=SizeAdjust, converter=convertFontSizeAdjust |
| 147 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch | 147 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch |
| 148 font-style inherited, font, type_name=FontStyle, name_for_methods=Style | 148 font-style inherited, font, type_name=FontStyle, name_for_methods=Style |
| 149 font-variant-ligatures inherited, font, type_name=VariantLigatures, name_for_met
hods=VariantLigatures, converter=convertFontVariantLigatures | 149 font-variant-ligatures inherited, font, type_name=VariantLigatures, name_for_met
hods=VariantLigatures, converter=convertFontVariantLigatures |
| 150 font-variant-caps inherited, font, name_for_methods=VariantCaps, converter=conve
rtFontVariantCaps | 150 font-variant-caps inherited, font, name_for_methods=VariantCaps, converter=conve
rtFontVariantCaps |
| 151 font-variant-numeric inherited, font, name_for_methods=VariantNumeric, converter
=convertFontVariantNumeric | 151 font-variant-numeric inherited, font, name_for_methods=VariantNumeric, converter
=convertFontVariantNumeric |
| 152 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method
s=Weight, converter=convertFontWeight | 152 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method
s=Weight, converter=convertFontWeight |
| 153 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert
er=convertFontFeatureSettings | 153 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert
er=convertFontFeatureSettings |
| 154 font-variation-settings runtime_flag=CSSVariableFonts, inherited, font, name_for
_methods=VariationSettings, converter=convertFontVariationSettings |
| 154 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode | 155 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode |
| 155 -webkit-locale inherited, font, custom_value | 156 -webkit-locale inherited, font, custom_value |
| 156 text-orientation inherited, custom_value, type_name=TextOrientation | 157 text-orientation inherited, custom_value, type_name=TextOrientation |
| 157 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation | 158 -webkit-text-orientation inherited, custom_value, type_name=TextOrientation |
| 158 writing-mode inherited, custom_value, type_name=WritingMode | 159 writing-mode inherited, custom_value, type_name=WritingMode |
| 159 -webkit-writing-mode inherited, custom_value, type_name=WritingMode | 160 -webkit-writing-mode inherited, custom_value, type_name=WritingMode |
| 160 text-rendering inherited, font, type_name=TextRenderingMode | 161 text-rendering inherited, font, type_name=TextRenderingMode |
| 161 zoom custom_all | 162 zoom custom_all |
| 162 | 163 |
| 163 align-content initial=initialContentAlignment, converter=convertContentAlignment
Data | 164 align-content initial=initialContentAlignment, converter=convertContentAlignment
Data |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 -webkit-text-size-adjust alias_for=text-size-adjust | 619 -webkit-text-size-adjust alias_for=text-size-adjust |
| 619 -webkit-transform alias_for=transform | 620 -webkit-transform alias_for=transform |
| 620 -webkit-transform-origin alias_for=transform-origin | 621 -webkit-transform-origin alias_for=transform-origin |
| 621 -webkit-transform-style alias_for=transform-style | 622 -webkit-transform-style alias_for=transform-style |
| 622 -webkit-transition alias_for=transition | 623 -webkit-transition alias_for=transition |
| 623 -webkit-transition-delay alias_for=transition-delay | 624 -webkit-transition-delay alias_for=transition-delay |
| 624 -webkit-transition-duration alias_for=transition-duration | 625 -webkit-transition-duration alias_for=transition-duration |
| 625 -webkit-transition-property alias_for=transition-property | 626 -webkit-transition-property alias_for=transition-property |
| 626 -webkit-transition-timing-function alias_for=transition-timing-function | 627 -webkit-transition-timing-function alias_for=transition-timing-function |
| 627 -webkit-user-select alias_for=user-select | 628 -webkit-user-select alias_for=user-select |
| OLD | NEW |