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

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

Issue 1148873005: Parsing CSS properties for scroll snap points (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address review feedback Created 5 years, 6 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
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 mask-type svg 218 mask-type svg
219 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 219 max-height animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
220 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing 220 max-width animatable, initial=initialMaxSize, converter=convertLengthMaxSizing
221 min-height animatable, initial=initialMinSize, converter=convertLengthSizing 221 min-height animatable, initial=initialMinSize, converter=convertLengthSizing
222 min-width animatable, initial=initialMinSize, converter=convertLengthSizing 222 min-width animatable, initial=initialMinSize, converter=convertLengthSizing
223 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode 223 mix-blend-mode runtime_flag=CSSCompositing, type_name=blink::WebBlendMode, name_ for_methods=BlendMode
224 motion-offset runtime_flag=CSSMotionPath, animatable, converter=convertLength 224 motion-offset runtime_flag=CSSMotionPath, animatable, converter=convertLength
225 motion-path runtime_flag=CSSMotionPath, custom_all 225 motion-path runtime_flag=CSSMotionPath, custom_all
226 motion-rotation runtime_flag=CSSMotionPath, animatable, custom_all 226 motion-rotation runtime_flag=CSSMotionPath, animatable, custom_all
227 object-fit type_name=ObjectFit 227 object-fit type_name=ObjectFit
228 object-position animatable, converter=convertObjectPosition 228 object-position animatable, converter=convertPosition
229 opacity animatable, type_name=float 229 opacity animatable, type_name=float
230 order type_name=int 230 order type_name=int
231 orphans animatable, inherited, type_name=short, custom_all 231 orphans animatable, inherited, type_name=short, custom_all
232 outline-color animatable, custom_all 232 outline-color animatable, custom_all
233 outline-offset animatable, converter=convertComputedLength<int> 233 outline-offset animatable, converter=convertComputedLength<int>
234 outline-style custom_all 234 outline-style custom_all
235 outline-width animatable, converter=convertLineWidth<unsigned short> 235 outline-width animatable, converter=convertLineWidth<unsigned short>
236 overflow-wrap inherited 236 overflow-wrap inherited
237 overflow-x type_name=EOverflow 237 overflow-x type_name=EOverflow
238 overflow-y type_name=EOverflow 238 overflow-y type_name=EOverflow
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 widows animatable, inherited, type_name=short, custom_all 380 widows animatable, inherited, type_name=short, custom_all
381 width animatable, initial=initialSize, converter=convertLengthSizing 381 width animatable, initial=initialSize, converter=convertLengthSizing
382 will-change custom_all 382 will-change custom_all
383 word-break inherited 383 word-break inherited
384 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter= convertSpacing 384 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter= convertSpacing
385 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers. 385 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers.
386 word-wrap inherited, name_for_methods=OverflowWrap 386 word-wrap inherited, name_for_methods=OverflowWrap
387 writing-mode inherited, svg, type_name=SVGWritingMode 387 writing-mode inherited, svg, type_name=SVGWritingMode
388 z-index animatable, type_name=int, custom_all 388 z-index animatable, type_name=int, custom_all
389 389
390
391 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType
Timothy Loh 2015/06/04 03:58:26 Can we keep the list of properties above sorted? :
majidvp 2015/06/04 22:41:40 Done. Very reasonable. :)
392 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
393 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
394 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit ion
395 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo ordinates
396
390 // Non-standard direction aware properties 397 // Non-standard direction aware properties
391 398
392 -webkit-border-end-color direction_aware 399 -webkit-border-end-color direction_aware
393 -webkit-border-end-style direction_aware 400 -webkit-border-end-style direction_aware
394 -webkit-border-end-width direction_aware 401 -webkit-border-end-width direction_aware
395 -webkit-border-start-color direction_aware 402 -webkit-border-start-color direction_aware
396 -webkit-border-start-style direction_aware 403 -webkit-border-start-style direction_aware
397 -webkit-border-start-width direction_aware 404 -webkit-border-start-width direction_aware
398 -webkit-border-before-color direction_aware 405 -webkit-border-before-color direction_aware
399 -webkit-border-before-style direction_aware 406 -webkit-border-before-style direction_aware
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 -webkit-shape-image-threshold alias_for=shape-image-threshold 534 -webkit-shape-image-threshold alias_for=shape-image-threshold
528 -webkit-shape-margin alias_for=shape-margin 535 -webkit-shape-margin alias_for=shape-margin
529 -webkit-shape-outside alias_for=shape-outside 536 -webkit-shape-outside alias_for=shape-outside
530 -webkit-transform alias_for=transform 537 -webkit-transform alias_for=transform
531 -webkit-transform-origin alias_for=transform-origin 538 -webkit-transform-origin alias_for=transform-origin
532 -webkit-transform-style alias_for=transform-style 539 -webkit-transform-style alias_for=transform-style
533 -webkit-transition alias_for=transition 540 -webkit-transition alias_for=transition
534 -webkit-transition-delay alias_for=transition-delay 541 -webkit-transition-delay alias_for=transition-delay
535 -webkit-transition-duration alias_for=transition-duration 542 -webkit-transition-duration alias_for=transition-duration
536 -webkit-transition-property alias_for=transition-property 543 -webkit-transition-property alias_for=transition-property
537 -webkit-transition-timing-function alias_for=transition-timing-function 544 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698