| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 -webkit-user-select inherited | 389 -webkit-user-select inherited |
| 390 white-space inherited | 390 white-space inherited |
| 391 widows interpolable, inherited, type_name=short, custom_all | 391 widows interpolable, inherited, type_name=short, custom_all |
| 392 width interpolable, initial=initialSize, converter=convertLengthSizing | 392 width interpolable, initial=initialSize, converter=convertLengthSizing |
| 393 will-change custom_all | 393 will-change custom_all |
| 394 word-break inherited | 394 word-break inherited |
| 395 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 395 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
| 396 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 396 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 397 word-wrap inherited, name_for_methods=OverflowWrap | 397 word-wrap inherited, name_for_methods=OverflowWrap |
| 398 z-index interpolable, type_name=int, custom_all | 398 z-index interpolable, type_name=int, custom_all |
| 399 onclick-type |
| 400 onclick-vduration |
| 401 onclick-vpi type_name=int |
| 402 onclick-vpu type_name=int |
| 403 onscroll-type |
| 404 onscroll-vduration |
| 405 onscroll-vpi type_name=int |
| 406 onscroll-vpu type_name=int |
| 407 ontouchstart-type |
| 408 ontouchstart-vduration |
| 409 ontouchstart-vpi type_name=int |
| 410 ontouchstart-vpu type_name=int |
| 411 ontouchend-type |
| 412 ontouchend-vduration |
| 413 ontouchend-vpi type_name=int |
| 414 ontouchend-vpu type_name=int |
| 415 ontouchmove-type |
| 416 ontouchmove-vduration |
| 417 ontouchmove-vpi type_name=int |
| 418 ontouchmove-vpu type_name=int |
| 399 | 419 |
| 400 // Non-standard direction aware properties | 420 // Non-standard direction aware properties |
| 401 | 421 |
| 402 -webkit-border-end-color direction_aware | 422 -webkit-border-end-color direction_aware |
| 403 -webkit-border-end-style direction_aware | 423 -webkit-border-end-style direction_aware |
| 404 -webkit-border-end-width direction_aware | 424 -webkit-border-end-width direction_aware |
| 405 -webkit-border-start-color direction_aware | 425 -webkit-border-start-color direction_aware |
| 406 -webkit-border-start-style direction_aware | 426 -webkit-border-start-style direction_aware |
| 407 -webkit-border-start-width direction_aware | 427 -webkit-border-start-width direction_aware |
| 408 -webkit-border-before-color direction_aware | 428 -webkit-border-before-color direction_aware |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 -webkit-shape-margin alias_for=shape-margin | 559 -webkit-shape-margin alias_for=shape-margin |
| 540 -webkit-shape-outside alias_for=shape-outside | 560 -webkit-shape-outside alias_for=shape-outside |
| 541 -webkit-transform alias_for=transform | 561 -webkit-transform alias_for=transform |
| 542 -webkit-transform-origin alias_for=transform-origin | 562 -webkit-transform-origin alias_for=transform-origin |
| 543 -webkit-transform-style alias_for=transform-style | 563 -webkit-transform-style alias_for=transform-style |
| 544 -webkit-transition alias_for=transition | 564 -webkit-transition alias_for=transition |
| 545 -webkit-transition-delay alias_for=transition-delay | 565 -webkit-transition-delay alias_for=transition-delay |
| 546 -webkit-transition-duration alias_for=transition-duration | 566 -webkit-transition-duration alias_for=transition-duration |
| 547 -webkit-transition-property alias_for=transition-property | 567 -webkit-transition-property alias_for=transition-property |
| 548 -webkit-transition-timing-function alias_for=transition-timing-function | 568 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |