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

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

Issue 784453003: Initial scroll-blocks-on compositor integration (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Eliminate scrollbars from iframe test for cross-platform output consistency Created 5 years, 11 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 | Annotate | Revision Log
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 page-break-inside type_name=EPageBreak, initial=initialPageBreak 233 page-break-inside type_name=EPageBreak, initial=initialPageBreak
234 paint-order inherited, svg, converter=convertPaintOrder 234 paint-order inherited, svg, converter=convertPaintOrder
235 perspective animatable, converter=convertPerspective 235 perspective animatable, converter=convertPerspective
236 perspective-origin animatable, converter=convertPerspectiveOrigin 236 perspective-origin animatable, converter=convertPerspectiveOrigin
237 pointer-events inherited 237 pointer-events inherited
238 position 238 position
239 quotes inherited, converter=convertQuotes 239 quotes inherited, converter=convertQuotes
240 resize custom_value 240 resize custom_value
241 right animatable, initial=initialOffset, converter=convertLengthOrAuto 241 right animatable, initial=initialOffset, converter=convertLengthOrAuto
242 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior 242 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior
243 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<ScrollBl ocksOn> 243 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol lBlocksOn>
244 shape-image-threshold animatable, type_name=float 244 shape-image-threshold animatable, type_name=float
245 shape-margin animatable, converter=convertLength 245 shape-margin animatable, converter=convertLength
246 shape-outside animatable, converter=convertShapeValue 246 shape-outside animatable, converter=convertShapeValue
247 shape-rendering inherited, svg 247 shape-rendering inherited, svg
248 size custom_all 248 size custom_all
249 speak inherited 249 speak inherited
250 stop-color animatable, svg, converter=convertSVGColor 250 stop-color animatable, svg, converter=convertSVGColor
251 stop-opacity animatable, svg, converter=convertNumberOrPercentage 251 stop-opacity animatable, svg, converter=convertNumberOrPercentage
252 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all 252 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all
253 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c onverter=convertStrokeDasharray 253 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c onverter=convertStrokeDasharray
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 -webkit-flex-flow alias_for=flex-flow 519 -webkit-flex-flow alias_for=flex-flow
520 -webkit-flex-grow alias_for=flex-grow 520 -webkit-flex-grow alias_for=flex-grow
521 -webkit-flex-shrink alias_for=flex-shrink 521 -webkit-flex-shrink alias_for=flex-shrink
522 -webkit-flex-wrap alias_for=flex-wrap 522 -webkit-flex-wrap alias_for=flex-wrap
523 -webkit-justify-content alias_for=justify-content 523 -webkit-justify-content alias_for=justify-content
524 -webkit-opacity alias_for=opacity 524 -webkit-opacity alias_for=opacity
525 -webkit-order alias_for=order 525 -webkit-order alias_for=order
526 -webkit-shape-image-threshold alias_for=shape-image-threshold 526 -webkit-shape-image-threshold alias_for=shape-image-threshold
527 -webkit-shape-margin alias_for=shape-margin 527 -webkit-shape-margin alias_for=shape-margin
528 -webkit-shape-outside alias_for=shape-outside 528 -webkit-shape-outside alias_for=shape-outside
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698