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

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

Issue 642303002: Move style building for grid-auto-flow to StyleBuilderConverter. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unreachable code. Created 6 years, 2 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 | « no previous file | Source/core/css/resolver/StyleBuilderConverter.h » ('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 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 flex-direction 169 flex-direction
170 flex-grow animatable, type_name=float 170 flex-grow animatable, type_name=float
171 flex-shrink animatable, type_name=float 171 flex-shrink animatable, type_name=float
172 flex-wrap 172 flex-wrap
173 float type_name=EFloat, name_for_methods=Floating 173 float type_name=EFloat, name_for_methods=Floating
174 flood-color animatable, svg, converter=convertSVGColor 174 flood-color animatable, svg, converter=convertSVGColor
175 flood-opacity animatable, svg, converter=convertNumberOrPercentage 175 flood-opacity animatable, svg, converter=convertNumberOrPercentage
176 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation 176 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation
177 glyph-orientation-vertical inherited, svg, custom_value 177 glyph-orientation-vertical inherited, svg, custom_value
178 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize 178 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize
179 grid-auto-flow runtime_flag=CSSGridLayout, custom_value 179 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow
180 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize 180 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize
181 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition 181 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition
182 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition 182 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition
183 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition 183 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition
184 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition 184 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition
185 grid-template-areas runtime_flag=CSSGridLayout, custom_all 185 grid-template-areas runtime_flag=CSSGridLayout, custom_all
186 grid-template-columns runtime_flag=CSSGridLayout, custom_all 186 grid-template-columns runtime_flag=CSSGridLayout, custom_all
187 grid-template-rows runtime_flag=CSSGridLayout, custom_all 187 grid-template-rows runtime_flag=CSSGridLayout, custom_all
188 height animatable, initial=initialSize, converter=convertLengthSizing 188 height animatable, initial=initialSize, converter=convertLengthSizing
189 image-rendering inherited 189 image-rendering inherited
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 -webkit-flex-flow alias_for=flex-flow 527 -webkit-flex-flow alias_for=flex-flow
528 -webkit-flex-grow alias_for=flex-grow 528 -webkit-flex-grow alias_for=flex-grow
529 -webkit-flex-shrink alias_for=flex-shrink 529 -webkit-flex-shrink alias_for=flex-shrink
530 -webkit-flex-wrap alias_for=flex-wrap 530 -webkit-flex-wrap alias_for=flex-wrap
531 -webkit-justify-content alias_for=justify-content 531 -webkit-justify-content alias_for=justify-content
532 -webkit-opacity alias_for=opacity 532 -webkit-opacity alias_for=opacity
533 -webkit-order alias_for=order 533 -webkit-order alias_for=order
534 -webkit-shape-image-threshold alias_for=shape-image-threshold 534 -webkit-shape-image-threshold alias_for=shape-image-threshold
535 -webkit-shape-margin alias_for=shape-margin 535 -webkit-shape-margin alias_for=shape-margin
536 -webkit-shape-outside alias_for=shape-outside 536 -webkit-shape-outside alias_for=shape-outside
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/resolver/StyleBuilderConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698