| OLD | NEW |
| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 overflow-wrap inherited | 317 overflow-wrap inherited |
| 318 overflow-x type_name=EOverflow | 318 overflow-x type_name=EOverflow |
| 319 overflow-y type_name=EOverflow | 319 overflow-y type_name=EOverflow |
| 320 padding-bottom interpolable, initial=initialPadding, converter=convertLength | 320 padding-bottom interpolable, initial=initialPadding, converter=convertLength |
| 321 padding-left interpolable, initial=initialPadding, converter=convertLength | 321 padding-left interpolable, initial=initialPadding, converter=convertLength |
| 322 padding-right interpolable, initial=initialPadding, converter=convertLength | 322 padding-right interpolable, initial=initialPadding, converter=convertLength |
| 323 padding-top interpolable, initial=initialPadding, converter=convertLength | 323 padding-top interpolable, initial=initialPadding, converter=convertLength |
| 324 paint-order inherited, svg, converter=convertPaintOrder | 324 paint-order inherited, svg, converter=convertPaintOrder |
| 325 perspective interpolable, converter=convertPerspective | 325 perspective interpolable, converter=convertPerspective |
| 326 perspective-origin interpolable, converter=convertPosition | 326 perspective-origin interpolable, converter=convertPosition |
| 327 pointer-events inherited, independent | 327 pointer-events inherited, independent, keyword_only, keywords=[none|auto|stroke|
fill|painted|visible|visibleStroke|visibleFill|visiblePainted|bounding-box|all],
initial_keyword=auto |
| 328 position custom_inherit | 328 position custom_inherit |
| 329 quotes inherited, converter=convertQuotes | 329 quotes inherited, converter=convertQuotes |
| 330 resize custom_value | 330 resize custom_value |
| 331 right typedom_types=[Length], keywords=[auto], supports_percentage, interpolable
, initial=initialOffset, converter=convertLengthOrAuto | 331 right typedom_types=[Length], keywords=[auto], supports_percentage, interpolable
, initial=initialOffset, converter=convertLengthOrAuto |
| 332 r interpolable, svg, converter=convertLength | 332 r interpolable, svg, converter=convertLength |
| 333 rx interpolable, svg, converter=convertLengthOrAuto | 333 rx interpolable, svg, converter=convertLengthOrAuto |
| 334 ry interpolable, svg, converter=convertLengthOrAuto | 334 ry interpolable, svg, converter=convertLengthOrAuto |
| 335 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior | 335 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior |
| 336 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType | 336 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType |
| 337 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 337 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 -webkit-text-size-adjust alias_for=text-size-adjust | 631 -webkit-text-size-adjust alias_for=text-size-adjust |
| 632 -webkit-transform alias_for=transform | 632 -webkit-transform alias_for=transform |
| 633 -webkit-transform-origin alias_for=transform-origin | 633 -webkit-transform-origin alias_for=transform-origin |
| 634 -webkit-transform-style alias_for=transform-style | 634 -webkit-transform-style alias_for=transform-style |
| 635 -webkit-transition alias_for=transition | 635 -webkit-transition alias_for=transition |
| 636 -webkit-transition-delay alias_for=transition-delay | 636 -webkit-transition-delay alias_for=transition-delay |
| 637 -webkit-transition-duration alias_for=transition-duration | 637 -webkit-transition-duration alias_for=transition-duration |
| 638 -webkit-transition-property alias_for=transition-property | 638 -webkit-transition-property alias_for=transition-property |
| 639 -webkit-transition-timing-function alias_for=transition-timing-function | 639 -webkit-transition-timing-function alias_for=transition-timing-function |
| 640 -webkit-user-select alias_for=user-select | 640 -webkit-user-select alias_for=user-select |
| OLD | NEW |