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 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 // High Priority and all other font properties. | 77 // High Priority and all other font properties. |
78 // Other properties can depend upon high priority properties (e.g. font-size / e
ms) | 78 // Other properties can depend upon high priority properties (e.g. font-size / e
ms) |
79 color animatable, inherited, custom_all | 79 color animatable, inherited, custom_all |
80 direction inherited, custom_value | 80 direction inherited, custom_value |
81 // FIXME: This is a mess due to crbug.com/353932. Shorthands shouldn't have | 81 // FIXME: This is a mess due to crbug.com/353932. Shorthands shouldn't have |
82 // any StyleBuilder handling! | 82 // any StyleBuilder handling! |
83 font custom_all, longhands=font-family;font-size;font-style;font-variant;font-we
ight;font-stretch;line-height | 83 font custom_all, longhands=font-family;font-size;font-style;font-variant;font-we
ight;font-stretch;line-height |
84 font-family inherited, custom_all | 84 font-family inherited, custom_all |
85 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning | 85 font-kerning inherited, font, type_name=FontDescription::Kerning, name_for_metho
ds=Kerning |
86 font-size animatable, inherited, custom_all | 86 font-size animatable, inherited, font, name_for_methods=Size, converter=convertF
ontSize |
87 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch | 87 font-stretch inherited, font, type_name=FontStretch, name_for_methods=Stretch |
88 font-style inherited, font, type_name=FontStyle, name_for_methods=Style | 88 font-style inherited, font, type_name=FontStyle, name_for_methods=Style |
89 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant | 89 font-variant inherited, font, type_name=FontVariant, name_for_methods=Variant |
90 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve
rter=convertFontVariantLigatures | 90 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve
rter=convertFontVariantLigatures |
91 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods=
Weight, converter=convertFontWeight | 91 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods=
Weight, converter=convertFontWeight |
92 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings,
converter=convertFontFeatureSettings | 92 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings,
converter=convertFontFeatureSettings |
93 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode | 93 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode |
94 -webkit-locale inherited, custom_value | 94 -webkit-locale inherited, custom_value |
95 -webkit-text-orientation inherited, custom_value | 95 -webkit-text-orientation inherited, custom_value |
96 -webkit-writing-mode inherited, custom_value | 96 -webkit-writing-mode inherited, custom_value |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 -webkit-flex-flow alias_for=flex-flow | 525 -webkit-flex-flow alias_for=flex-flow |
526 -webkit-flex-grow alias_for=flex-grow | 526 -webkit-flex-grow alias_for=flex-grow |
527 -webkit-flex-shrink alias_for=flex-shrink | 527 -webkit-flex-shrink alias_for=flex-shrink |
528 -webkit-flex-wrap alias_for=flex-wrap | 528 -webkit-flex-wrap alias_for=flex-wrap |
529 -webkit-justify-content alias_for=justify-content | 529 -webkit-justify-content alias_for=justify-content |
530 -webkit-opacity alias_for=opacity | 530 -webkit-opacity alias_for=opacity |
531 -webkit-order alias_for=order | 531 -webkit-order alias_for=order |
532 -webkit-shape-image-threshold alias_for=shape-image-threshold | 532 -webkit-shape-image-threshold alias_for=shape-image-threshold |
533 -webkit-shape-margin alias_for=shape-margin | 533 -webkit-shape-margin alias_for=shape-margin |
534 -webkit-shape-outside alias_for=shape-outside | 534 -webkit-shape-outside alias_for=shape-outside |
OLD | NEW |