Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.in

Issue 2617443005: Implements CSSPropertyAPI for the font-size-adjust property. (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 transition-property custom_all 159 transition-property custom_all
160 transition-timing-function custom_all 160 transition-timing-function custom_all
161 161
162 // High Priority and all other font properties. 162 // High Priority and all other font properties.
163 // Other properties can depend upon high priority properties (e.g. font-size / e ms) 163 // Other properties can depend upon high priority properties (e.g. font-size / e ms)
164 color interpolable, inherited, custom_all 164 color interpolable, inherited, custom_all
165 direction inherited, custom_value, keyword_only, keywords=[ltr|rtl], initial_key word=ltr, field_storage_type=platform/text/TextDirection 165 direction inherited, custom_value, keyword_only, keywords=[ltr|rtl], initial_key word=ltr, field_storage_type=platform/text/TextDirection
166 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_ for_methods=FamilyDescription, converter=convertFontFamily 166 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_ for_methods=FamilyDescription, converter=convertFontFamily
167 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho ds=Kerning 167 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho ds=Kerning
168 font-size interpolable, inherited, font, name_for_methods=Size, getter=getSize, converter=convertFontSize 168 font-size interpolable, inherited, font, name_for_methods=Size, getter=getSize, converter=convertFontSize
169 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font, name_for_methods=SizeAdjust, converter=convertFontSizeAdjust 169 font-size-adjust runtime_flag=CSSFontSizeAdjust, interpolable, inherited, font, name_for_methods=SizeAdjust, converter=convertFontSizeAdjust, api_class
170 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch 170 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch
171 font-style inherited, font, type_name=FontStyle, name_for_methods=Style 171 font-style inherited, font, type_name=FontStyle, name_for_methods=Style
172 font-variant-ligatures inherited, font, type_name=VariantLigatures, name_for_met hods=VariantLigatures, converter=convertFontVariantLigatures 172 font-variant-ligatures inherited, font, type_name=VariantLigatures, name_for_met hods=VariantLigatures, converter=convertFontVariantLigatures
173 font-variant-caps inherited, font, name_for_methods=VariantCaps, converter=conve rtFontVariantCaps 173 font-variant-caps inherited, font, name_for_methods=VariantCaps, converter=conve rtFontVariantCaps
174 font-variant-numeric inherited, font, name_for_methods=VariantNumeric, converter =convertFontVariantNumeric 174 font-variant-numeric inherited, font, name_for_methods=VariantNumeric, converter =convertFontVariantNumeric
175 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method s=Weight, converter=convertFontWeight 175 font-weight interpolable, inherited, font, type_name=FontWeight, name_for_method s=Weight, converter=convertFontWeight
176 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert er=convertFontFeatureSettings 176 font-feature-settings inherited, font, name_for_methods=FeatureSettings, convert er=convertFontFeatureSettings
177 font-variation-settings runtime_flag=CSSVariableFonts, inherited, font, name_for _methods=VariationSettings, converter=convertFontVariationSettings 177 font-variation-settings runtime_flag=CSSVariableFonts, inherited, font, name_for _methods=VariationSettings, converter=convertFontVariationSettings
178 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode 178 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode
179 -webkit-locale inherited, font, custom_value 179 -webkit-locale inherited, font, custom_value
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 -webkit-text-size-adjust alias_for=text-size-adjust 650 -webkit-text-size-adjust alias_for=text-size-adjust
651 -webkit-transform alias_for=transform 651 -webkit-transform alias_for=transform
652 -webkit-transform-origin alias_for=transform-origin 652 -webkit-transform-origin alias_for=transform-origin
653 -webkit-transform-style alias_for=transform-style 653 -webkit-transform-style alias_for=transform-style
654 -webkit-transition alias_for=transition 654 -webkit-transition alias_for=transition
655 -webkit-transition-delay alias_for=transition-delay 655 -webkit-transition-delay alias_for=transition-delay
656 -webkit-transition-duration alias_for=transition-duration 656 -webkit-transition-duration alias_for=transition-duration
657 -webkit-transition-property alias_for=transition-property 657 -webkit-transition-property alias_for=transition-property
658 -webkit-transition-timing-function alias_for=transition-timing-function 658 -webkit-transition-timing-function alias_for=transition-timing-function
659 -webkit-user-select alias_for=user-select 659 -webkit-user-select alias_for=user-select
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698