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

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

Issue 943463002: Initial implementation of font-size-adjust (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 do not get their own enum and instead map 7 // Properties specifying alias_for do not get their own enum and instead map
8 // directly onto the CSSPropertyID they alias. Currently this means that the 8 // directly onto the CSSPropertyID they alias. Currently this means that the
9 // UseCounter will not pick up on these (crbug.com/304855) 9 // UseCounter will not pick up on these (crbug.com/304855)
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 // Properties with StyleBuilder handling 79 // Properties with StyleBuilder handling
80 80
81 // High Priority and all other font properties. 81 // High Priority and all other font properties.
82 // Other properties can depend upon high priority properties (e.g. font-size / e ms) 82 // Other properties can depend upon high priority properties (e.g. font-size / e ms)
83 color animatable, inherited, custom_all 83 color animatable, inherited, custom_all
84 direction inherited, custom_value 84 direction inherited, custom_value
85 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_ for_methods=FamilyDescription, converter=convertFontFamily 85 font-family inherited, font, type_name=FontDescription::FamilyDescription, name_ for_methods=FamilyDescription, converter=convertFontFamily
86 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho ds=Kerning 86 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho ds=Kerning
87 font-size animatable, inherited, font, name_for_methods=Size, converter=convertF ontSize 87 font-size animatable, inherited, font, name_for_methods=Size, converter=convertF ontSize
88 font-size-adjust runtime_flag=CSSFontSizeAdjust, animatable, inherited, font, ty pe_name=float, name_for_methods=SizeAdjust
Timothy Loh 2015/02/19 23:00:46 I'd drop the animatable flag for a later patch, si
88 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch 89 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch
89 font-style inherited, font, type_name=FontStyle, name_for_methods=Style 90 font-style inherited, font, type_name=FontStyle, name_for_methods=Style
90 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant 91 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant
91 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve rter=convertFontVariantLigatures 92 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve rter=convertFontVariantLigatures
92 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods= Weight, converter=convertFontWeight 93 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods= Weight, converter=convertFontWeight
93 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings, converter=convertFontFeatureSettings 94 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings, converter=convertFontFeatureSettings
94 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode 95 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode
95 -webkit-locale inherited, custom_value 96 -webkit-locale inherited, custom_value
96 -webkit-text-orientation inherited, custom_value 97 -webkit-text-orientation inherited, custom_value
97 -webkit-writing-mode inherited, custom_value 98 -webkit-writing-mode inherited, custom_value
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 -webkit-flex-flow alias_for=flex-flow 520 -webkit-flex-flow alias_for=flex-flow
520 -webkit-flex-grow alias_for=flex-grow 521 -webkit-flex-grow alias_for=flex-grow
521 -webkit-flex-shrink alias_for=flex-shrink 522 -webkit-flex-shrink alias_for=flex-shrink
522 -webkit-flex-wrap alias_for=flex-wrap 523 -webkit-flex-wrap alias_for=flex-wrap
523 -webkit-justify-content alias_for=justify-content 524 -webkit-justify-content alias_for=justify-content
524 -webkit-opacity alias_for=opacity 525 -webkit-opacity alias_for=opacity
525 -webkit-order alias_for=order 526 -webkit-order alias_for=order
526 -webkit-shape-image-threshold alias_for=shape-image-threshold 527 -webkit-shape-image-threshold alias_for=shape-image-threshold
527 -webkit-shape-margin alias_for=shape-margin 528 -webkit-shape-margin alias_for=shape-margin
528 -webkit-shape-outside alias_for=shape-outside 529 -webkit-shape-outside alias_for=shape-outside
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698