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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 writing-mode inherited, svg, type_name=SVGWritingMode | 384 writing-mode inherited, svg, type_name=SVGWritingMode |
385 z-index animatable, type_name=int, custom_all | 385 z-index animatable, type_name=int, custom_all |
386 | 386 |
387 // Internal properties | 387 // Internal properties |
388 | 388 |
389 -internal-marquee-direction name_for_methods=MarqueeDirection | 389 -internal-marquee-direction name_for_methods=MarqueeDirection |
390 -internal-marquee-increment name_for_methods=MarqueeIncrement, converter=convert
Length | 390 -internal-marquee-increment name_for_methods=MarqueeIncrement, converter=convert
Length |
391 -internal-marquee-repetition type_name=int, name_for_methods=MarqueeLoopCount, c
ustom_value | 391 -internal-marquee-repetition type_name=int, name_for_methods=MarqueeLoopCount, c
ustom_value |
392 -internal-marquee-speed name_for_methods=MarqueeSpeed, converter=convertNumberOr
Percentage | 392 -internal-marquee-speed name_for_methods=MarqueeSpeed, converter=convertNumberOr
Percentage |
393 -internal-marquee-style name_for_methods=MarqueeBehavior | 393 -internal-marquee-style name_for_methods=MarqueeBehavior |
394 -internal-callback custom_all | |
395 | 394 |
396 // Non-standard direction aware properties | 395 // Non-standard direction aware properties |
397 | 396 |
398 -webkit-border-end-color direction_aware | 397 -webkit-border-end-color direction_aware |
399 -webkit-border-end-style direction_aware | 398 -webkit-border-end-style direction_aware |
400 -webkit-border-end-width direction_aware | 399 -webkit-border-end-width direction_aware |
401 -webkit-border-start-color direction_aware | 400 -webkit-border-start-color direction_aware |
402 -webkit-border-start-style direction_aware | 401 -webkit-border-start-style direction_aware |
403 -webkit-border-start-width direction_aware | 402 -webkit-border-start-width direction_aware |
404 -webkit-border-before-color direction_aware | 403 -webkit-border-before-color direction_aware |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 -webkit-flex-flow alias_for=flex-flow | 524 -webkit-flex-flow alias_for=flex-flow |
526 -webkit-flex-grow alias_for=flex-grow | 525 -webkit-flex-grow alias_for=flex-grow |
527 -webkit-flex-shrink alias_for=flex-shrink | 526 -webkit-flex-shrink alias_for=flex-shrink |
528 -webkit-flex-wrap alias_for=flex-wrap | 527 -webkit-flex-wrap alias_for=flex-wrap |
529 -webkit-justify-content alias_for=justify-content | 528 -webkit-justify-content alias_for=justify-content |
530 -webkit-opacity alias_for=opacity | 529 -webkit-opacity alias_for=opacity |
531 -webkit-order alias_for=order | 530 -webkit-order alias_for=order |
532 -webkit-shape-image-threshold alias_for=shape-image-threshold | 531 -webkit-shape-image-threshold alias_for=shape-image-threshold |
533 -webkit-shape-margin alias_for=shape-margin | 532 -webkit-shape-margin alias_for=shape-margin |
534 -webkit-shape-outside alias_for=shape-outside | 533 -webkit-shape-outside alias_for=shape-outside |
OLD | NEW |