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: 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: Add some tests which need a rebaseline to TestExpectation Created 5 years, 9 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, inherited, font, name_for_metho ds=SizeAdjust, converter=convertFontSizeAdjust
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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 -webkit-flex-flow alias_for=flex-flow 524 -webkit-flex-flow alias_for=flex-flow
524 -webkit-flex-grow alias_for=flex-grow 525 -webkit-flex-grow alias_for=flex-grow
525 -webkit-flex-shrink alias_for=flex-shrink 526 -webkit-flex-shrink alias_for=flex-shrink
526 -webkit-flex-wrap alias_for=flex-wrap 527 -webkit-flex-wrap alias_for=flex-wrap
527 -webkit-justify-content alias_for=justify-content 528 -webkit-justify-content alias_for=justify-content
528 -webkit-opacity alias_for=opacity 529 -webkit-opacity alias_for=opacity
529 -webkit-order alias_for=order 530 -webkit-order alias_for=order
530 -webkit-shape-image-threshold alias_for=shape-image-threshold 531 -webkit-shape-image-threshold alias_for=shape-image-threshold
531 -webkit-shape-margin alias_for=shape-margin 532 -webkit-shape-margin alias_for=shape-margin
532 -webkit-shape-outside alias_for=shape-outside 533 -webkit-shape-outside alias_for=shape-outside
OLDNEW
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.cpp ('k') | Source/core/css/LayoutStyleCSSValueMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698