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

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

Issue 454133004: Use common converter for -webkit-column-[gap, width]. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl ('k') | no next file » | 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 -webkit-box-ordinal-group type_name=unsigned int 308 -webkit-box-ordinal-group type_name=unsigned int
309 -webkit-box-orient 309 -webkit-box-orient
310 -webkit-box-pack 310 -webkit-box-pack
311 -webkit-box-reflect converter=convertBoxReflect 311 -webkit-box-reflect converter=convertBoxReflect
312 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow 312 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow
313 -webkit-clip-path animatable, custom_value 313 -webkit-clip-path animatable, custom_value
314 -webkit-column-break-after type_name=EPageBreak, initial=initialPageBreak 314 -webkit-column-break-after type_name=EPageBreak, initial=initialPageBreak
315 -webkit-column-break-before type_name=EPageBreak, initial=initialPageBreak 315 -webkit-column-break-before type_name=EPageBreak, initial=initialPageBreak
316 -webkit-column-break-inside type_name=EPageBreak, initial=initialPageBreak 316 -webkit-column-break-inside type_name=EPageBreak, initial=initialPageBreak
317 -webkit-column-count animatable, type_name=unsigned short, custom_all 317 -webkit-column-count animatable, type_name=unsigned short, custom_all
318 -webkit-column-gap animatable, type_name=float, custom_all 318 -webkit-column-gap animatable, converter=convertComputedLength<float>, custom_al l
319 -webkit-column-rule-color animatable, custom_all 319 -webkit-column-rule-color animatable, custom_all
320 -webkit-column-rule-style type_name=EBorderStyle, initial=initialBorderStyle 320 -webkit-column-rule-style type_name=EBorderStyle, initial=initialBorderStyle
321 -webkit-column-rule-width animatable, converter=convertLineWidth<unsigned short> 321 -webkit-column-rule-width animatable, converter=convertLineWidth<unsigned short>
322 -webkit-column-span type_name=ColumnSpan 322 -webkit-column-span type_name=ColumnSpan
323 -webkit-column-width animatable, type_name=float, custom_all 323 -webkit-column-width animatable, converter=convertComputedLength<float>, custom_ all
324 -webkit-filter animatable, custom_value 324 -webkit-filter animatable, custom_value
325 -webkit-highlight inherited, converter=convertString<CSSValueNone> 325 -webkit-highlight inherited, converter=convertString<CSSValueNone>
326 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto> 326 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve rter=convertString<CSSValueAuto>
327 -webkit-line-box-contain inherited, converter=convertLineBoxContain 327 -webkit-line-box-contain inherited, converter=convertLineBoxContain
328 -webkit-line-break inherited, type_name=LineBreak 328 -webkit-line-break inherited, type_name=LineBreak
329 -webkit-line-clamp type_name=LineClampValue 329 -webkit-line-clamp type_name=LineClampValue
330 -webkit-margin-after-collapse type_name=EMarginCollapse 330 -webkit-margin-after-collapse type_name=EMarginCollapse
331 -webkit-margin-before-collapse type_name=EMarginCollapse 331 -webkit-margin-before-collapse type_name=EMarginCollapse
332 -webkit-margin-bottom-collapse type_name=EMarginCollapse, name_for_methods=Margi nAfterCollapse 332 -webkit-margin-bottom-collapse type_name=EMarginCollapse, name_for_methods=Margi nAfterCollapse
333 -webkit-margin-top-collapse type_name=EMarginCollapse, name_for_methods=MarginBe foreCollapse 333 -webkit-margin-top-collapse type_name=EMarginCollapse, name_for_methods=MarginBe foreCollapse
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698