| 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 -webkit-logical-height direction_aware | 509 -webkit-logical-height direction_aware |
| 510 -webkit-min-logical-width direction_aware | 510 -webkit-min-logical-width direction_aware |
| 511 -webkit-min-logical-height direction_aware | 511 -webkit-min-logical-height direction_aware |
| 512 -webkit-max-logical-width direction_aware | 512 -webkit-max-logical-width direction_aware |
| 513 -webkit-max-logical-height direction_aware | 513 -webkit-max-logical-height direction_aware |
| 514 | 514 |
| 515 // Properties that we ignore in the StyleBuilder. | 515 // Properties that we ignore in the StyleBuilder. |
| 516 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde
r | 516 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde
r |
| 517 | 517 |
| 518 all builder_skip | 518 all builder_skip |
| 519 page builder_skip | 519 page builder_skip, api_class |
| 520 -webkit-font-size-delta builder_skip | 520 -webkit-font-size-delta builder_skip |
| 521 -webkit-text-decorations-in-effect inherited, builder_skip | 521 -webkit-text-decorations-in-effect inherited, builder_skip |
| 522 | 522 |
| 523 // Descriptors | 523 // Descriptors |
| 524 | 524 |
| 525 font-display descriptor_only, runtime_flag=CSSFontDisplay | 525 font-display descriptor_only, runtime_flag=CSSFontDisplay |
| 526 max-zoom descriptor_only | 526 max-zoom descriptor_only |
| 527 min-zoom descriptor_only | 527 min-zoom descriptor_only |
| 528 orientation descriptor_only | 528 orientation descriptor_only |
| 529 src descriptor_only | 529 src descriptor_only |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 -webkit-text-size-adjust alias_for=text-size-adjust | 650 -webkit-text-size-adjust alias_for=text-size-adjust |
| 651 -webkit-transform alias_for=transform | 651 -webkit-transform alias_for=transform |
| 652 -webkit-transform-origin alias_for=transform-origin | 652 -webkit-transform-origin alias_for=transform-origin |
| 653 -webkit-transform-style alias_for=transform-style | 653 -webkit-transform-style alias_for=transform-style |
| 654 -webkit-transition alias_for=transition | 654 -webkit-transition alias_for=transition |
| 655 -webkit-transition-delay alias_for=transition-delay | 655 -webkit-transition-delay alias_for=transition-delay |
| 656 -webkit-transition-duration alias_for=transition-duration | 656 -webkit-transition-duration alias_for=transition-duration |
| 657 -webkit-transition-property alias_for=transition-property | 657 -webkit-transition-property alias_for=transition-property |
| 658 -webkit-transition-timing-function alias_for=transition-timing-function | 658 -webkit-transition-timing-function alias_for=transition-timing-function |
| 659 -webkit-user-select alias_for=user-select | 659 -webkit-user-select alias_for=user-select |
| OLD | NEW |