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

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: Add additional tests for position parsing 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
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 369 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
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=convertSnapD estination
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