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

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

Issue 1070143002: [Alignment] Single class for holding the alignment data. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased and got back previous setter names. Created 5 years, 7 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
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/ComputedStyleCSSValueMapping.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve rter=convertFontVariantLigatures 93 font-variant-ligatures inherited, font, name_for_methods=VariantLigatures, conve rter=convertFontVariantLigatures
94 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods= Weight, converter=convertFontWeight 94 font-weight animatable, inherited, font, type_name=FontWeight, name_for_methods= Weight, converter=convertFontWeight
95 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings, converter=convertFontFeatureSettings 95 -webkit-font-feature-settings inherited, font, name_for_methods=FeatureSettings, converter=convertFontFeatureSettings
96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode 96 -webkit-font-smoothing inherited, font, type_name=FontSmoothingMode
97 -webkit-locale inherited, custom_value 97 -webkit-locale inherited, custom_value
98 -webkit-text-orientation inherited, custom_value 98 -webkit-text-orientation inherited, custom_value
99 -webkit-writing-mode inherited, custom_value 99 -webkit-writing-mode inherited, custom_value
100 text-rendering inherited, font, type_name=TextRenderingMode 100 text-rendering inherited, font, type_name=TextRenderingMode
101 zoom custom_all 101 zoom custom_all
102 102
103 align-content custom_all 103 align-content initial=initialContentAlignment, converter=convertContentAlignment Data
104 align-items custom_all 104 align-items initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignmen tData
105 alignment-baseline svg 105 alignment-baseline svg
106 align-self custom_all 106 align-self initial=initialSelfAlignment, converter=convertSelfOrDefaultAlignment Data
107 animation-delay custom_all 107 animation-delay custom_all
108 animation-direction custom_all 108 animation-direction custom_all
109 animation-duration custom_all 109 animation-duration custom_all
110 animation-fill-mode custom_all 110 animation-fill-mode custom_all
111 animation-iteration-count custom_all 111 animation-iteration-count custom_all
112 animation-name custom_all 112 animation-name custom_all
113 animation-play-state custom_all 113 animation-play-state custom_all
114 animation-timing-function custom_all 114 animation-timing-function custom_all
115 backface-visibility 115 backface-visibility
116 background-attachment custom_all 116 background-attachment custom_all
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition 189 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition
190 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition 190 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition
191 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition 191 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition
192 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition 192 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition
193 grid-template-areas runtime_flag=CSSGridLayout, custom_all 193 grid-template-areas runtime_flag=CSSGridLayout, custom_all
194 grid-template-columns runtime_flag=CSSGridLayout, custom_all 194 grid-template-columns runtime_flag=CSSGridLayout, custom_all
195 grid-template-rows runtime_flag=CSSGridLayout, custom_all 195 grid-template-rows runtime_flag=CSSGridLayout, custom_all
196 height animatable, initial=initialSize, converter=convertLengthSizing 196 height animatable, initial=initialSize, converter=convertLengthSizing
197 image-rendering inherited 197 image-rendering inherited
198 isolation runtime_flag=CSSCompositing 198 isolation runtime_flag=CSSCompositing
199 justify-content custom_all 199 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData
200 justify-items runtime_flag=CSSGridLayout, custom_all 200 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData
201 justify-self runtime_flag=CSSGridLayout, custom_all 201 justify-self runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converter =convertSelfOrDefaultAlignmentData
202 left animatable, initial=initialOffset, converter=convertLengthOrAuto 202 left animatable, initial=initialOffset, converter=convertLengthOrAuto
203 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing 203 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing
204 lighting-color animatable, svg, converter=convertSVGColor 204 lighting-color animatable, svg, converter=convertSVGColor
205 line-height animatable, inherited, getter=specifiedLineHeight, converter=convert LineHeight 205 line-height animatable, inherited, getter=specifiedLineHeight, converter=convert LineHeight
206 list-style-image animatable, inherited, custom_value 206 list-style-image animatable, inherited, custom_value
207 list-style-position inherited 207 list-style-position inherited
208 list-style-type inherited 208 list-style-type inherited
209 margin-bottom animatable, initial=initialMargin, converter=convertQuirkyLength 209 margin-bottom animatable, initial=initialMargin, converter=convertQuirkyLength
210 margin-left animatable, initial=initialMargin, converter=convertQuirkyLength 210 margin-left animatable, initial=initialMargin, converter=convertQuirkyLength
211 margin-right animatable, initial=initialMargin, converter=convertQuirkyLength 211 margin-right animatable, initial=initialMargin, converter=convertQuirkyLength
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 -webkit-shape-margin alias_for=shape-margin 528 -webkit-shape-margin alias_for=shape-margin
529 -webkit-shape-outside alias_for=shape-outside 529 -webkit-shape-outside alias_for=shape-outside
530 -webkit-transform alias_for=transform 530 -webkit-transform alias_for=transform
531 -webkit-transform-origin alias_for=transform-origin 531 -webkit-transform-origin alias_for=transform-origin
532 -webkit-transform-style alias_for=transform-style 532 -webkit-transform-style alias_for=transform-style
533 -webkit-transition alias_for=transition 533 -webkit-transition alias_for=transition
534 -webkit-transition-delay alias_for=transition-delay 534 -webkit-transition-delay alias_for=transition-delay
535 -webkit-transition-duration alias_for=transition-duration 535 -webkit-transition-duration alias_for=transition-duration
536 -webkit-transition-property alias_for=transition-property 536 -webkit-transition-property alias_for=transition-property
537 -webkit-transition-timing-function alias_for=transition-timing-function 537 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/ComputedStyleCSSValueMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698