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

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

Issue 2563753003: Moved pointer-events to be generated in ComputedStyleBase (Closed)
Patch Set: Corrected initial keyword to be auto. Created 4 years 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 overflow-wrap inherited 304 overflow-wrap inherited
305 overflow-x type_name=EOverflow 305 overflow-x type_name=EOverflow
306 overflow-y type_name=EOverflow 306 overflow-y type_name=EOverflow
307 padding-bottom interpolable, initial=initialPadding, converter=convertLength 307 padding-bottom interpolable, initial=initialPadding, converter=convertLength
308 padding-left interpolable, initial=initialPadding, converter=convertLength 308 padding-left interpolable, initial=initialPadding, converter=convertLength
309 padding-right interpolable, initial=initialPadding, converter=convertLength 309 padding-right interpolable, initial=initialPadding, converter=convertLength
310 padding-top interpolable, initial=initialPadding, converter=convertLength 310 padding-top interpolable, initial=initialPadding, converter=convertLength
311 paint-order inherited, svg, converter=convertPaintOrder 311 paint-order inherited, svg, converter=convertPaintOrder
312 perspective interpolable, converter=convertPerspective 312 perspective interpolable, converter=convertPerspective
313 perspective-origin interpolable, converter=convertPosition 313 perspective-origin interpolable, converter=convertPosition
314 pointer-events inherited, independent 314 pointer-events inherited, independent, keyword_only, keywords=[none|auto|stroke| fill|painted|visible|visibleStroke|visibleFill|visiblePainted|bounding-box|all], initial_keyword=auto
315 position custom_inherit 315 position custom_inherit
316 quotes inherited, converter=convertQuotes 316 quotes inherited, converter=convertQuotes
317 resize custom_value 317 resize custom_value
318 right typedom_types=[Length], keywords=[auto], supports_percentage, interpolable , initial=initialOffset, converter=convertLengthOrAuto 318 right typedom_types=[Length], keywords=[auto], supports_percentage, interpolable , initial=initialOffset, converter=convertLengthOrAuto
319 r interpolable, svg, converter=convertLength 319 r interpolable, svg, converter=convertLength
320 rx interpolable, svg, converter=convertLengthOrAuto 320 rx interpolable, svg, converter=convertLengthOrAuto
321 ry interpolable, svg, converter=convertLengthOrAuto 321 ry interpolable, svg, converter=convertLengthOrAuto
322 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior 322 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior
323 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType 323 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType
324 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts 324 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin ts
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 -webkit-text-size-adjust alias_for=text-size-adjust 618 -webkit-text-size-adjust alias_for=text-size-adjust
619 -webkit-transform alias_for=transform 619 -webkit-transform alias_for=transform
620 -webkit-transform-origin alias_for=transform-origin 620 -webkit-transform-origin alias_for=transform-origin
621 -webkit-transform-style alias_for=transform-style 621 -webkit-transform-style alias_for=transform-style
622 -webkit-transition alias_for=transition 622 -webkit-transition alias_for=transition
623 -webkit-transition-delay alias_for=transition-delay 623 -webkit-transition-delay alias_for=transition-delay
624 -webkit-transition-duration alias_for=transition-duration 624 -webkit-transition-duration alias_for=transition-duration
625 -webkit-transition-property alias_for=transition-property 625 -webkit-transition-property alias_for=transition-property
626 -webkit-transition-timing-function alias_for=transition-timing-function 626 -webkit-transition-timing-function alias_for=transition-timing-function
627 -webkit-user-select alias_for=user-select 627 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698