| 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 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 widows animatable, inherited, type_name=short, custom_all | 379 widows animatable, inherited, type_name=short, custom_all |
| 380 width animatable, initial=initialSize, converter=convertLengthSizing | 380 width animatable, initial=initialSize, converter=convertLengthSizing |
| 381 will-change custom_all | 381 will-change custom_all |
| 382 word-break inherited | 382 word-break inherited |
| 383 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing | 383 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing |
| 384 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 384 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 385 word-wrap inherited, name_for_methods=OverflowWrap | 385 word-wrap inherited, name_for_methods=OverflowWrap |
| 386 writing-mode inherited, svg, type_name=SVGWritingMode | 386 writing-mode inherited, svg, type_name=SVGWritingMode |
| 387 z-index animatable, type_name=int, custom_all | 387 z-index animatable, type_name=int, custom_all |
| 388 | 388 |
| 389 // Internal properties | |
| 390 | |
| 391 -internal-marquee-direction name_for_methods=MarqueeDirection | |
| 392 -internal-marquee-increment name_for_methods=MarqueeIncrement, converter=convert
Length | |
| 393 -internal-marquee-repetition type_name=int, name_for_methods=MarqueeLoopCount, c
ustom_value | |
| 394 -internal-marquee-speed name_for_methods=MarqueeSpeed, converter=convertNumberOr
Percentage | |
| 395 -internal-marquee-style name_for_methods=MarqueeBehavior | |
| 396 | |
| 397 // Non-standard direction aware properties | 389 // Non-standard direction aware properties |
| 398 | 390 |
| 399 -webkit-border-end-color direction_aware | 391 -webkit-border-end-color direction_aware |
| 400 -webkit-border-end-style direction_aware | 392 -webkit-border-end-style direction_aware |
| 401 -webkit-border-end-width direction_aware | 393 -webkit-border-end-width direction_aware |
| 402 -webkit-border-start-color direction_aware | 394 -webkit-border-start-color direction_aware |
| 403 -webkit-border-start-style direction_aware | 395 -webkit-border-start-style direction_aware |
| 404 -webkit-border-start-width direction_aware | 396 -webkit-border-start-width direction_aware |
| 405 -webkit-border-before-color direction_aware | 397 -webkit-border-before-color direction_aware |
| 406 -webkit-border-before-style direction_aware | 398 -webkit-border-before-style direction_aware |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 -webkit-flex-flow alias_for=flex-flow | 517 -webkit-flex-flow alias_for=flex-flow |
| 526 -webkit-flex-grow alias_for=flex-grow | 518 -webkit-flex-grow alias_for=flex-grow |
| 527 -webkit-flex-shrink alias_for=flex-shrink | 519 -webkit-flex-shrink alias_for=flex-shrink |
| 528 -webkit-flex-wrap alias_for=flex-wrap | 520 -webkit-flex-wrap alias_for=flex-wrap |
| 529 -webkit-justify-content alias_for=justify-content | 521 -webkit-justify-content alias_for=justify-content |
| 530 -webkit-opacity alias_for=opacity | 522 -webkit-opacity alias_for=opacity |
| 531 -webkit-order alias_for=order | 523 -webkit-order alias_for=order |
| 532 -webkit-shape-image-threshold alias_for=shape-image-threshold | 524 -webkit-shape-image-threshold alias_for=shape-image-threshold |
| 533 -webkit-shape-margin alias_for=shape-margin | 525 -webkit-shape-margin alias_for=shape-margin |
| 534 -webkit-shape-outside alias_for=shape-outside | 526 -webkit-shape-outside alias_for=shape-outside |
| OLD | NEW |