 Chromium Code Reviews
 Chromium Code Reviews Issue 2529043002:
  [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap  (Closed)
    
  
    Issue 2529043002:
  [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap  (Closed) 
  | 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 112 | 112 | 
| 113 // - direction_aware | 113 // - direction_aware | 
| 114 // This property resolves to a different property based on the current direction | 114 // This property resolves to a different property based on the current direction | 
| 115 // and writing mode. | 115 // and writing mode. | 
| 116 | 116 | 
| 117 | 117 | 
| 118 // Properties with StyleBuilder handling | 118 // Properties with StyleBuilder handling | 
| 119 | 119 | 
| 120 // Animation Priority properties | 120 // Animation Priority properties | 
| 121 animation-delay custom_all | 121 animation-delay custom_all | 
| 122 animation-direction custom_all | 122 animation-direction keywords=[normal|reverse|alternate|alternate-reverse], suppo rts_multiple, custom_all | 
| 
dstockwell
2016/11/29 06:26:35
supports_multiple is a really weird name btw, some
 
meade_UTC10
2016/12/01 03:50:41
I'll follow the naming up in a separate patch. As
 | |
| 123 animation-duration custom_all | 123 animation-duration custom_all | 
| 124 animation-fill-mode custom_all | 124 animation-fill-mode custom_all | 
| 125 animation-iteration-count keywords=[infinite], supports_multiple, custom_all | 125 animation-iteration-count keywords=[infinite], supports_multiple, custom_all | 
| 126 animation-name custom_all | 126 animation-name custom_all | 
| 127 animation-play-state custom_all | 127 animation-play-state custom_all | 
| 128 animation-timing-function custom_all | 128 animation-timing-function custom_all | 
| 129 transition-delay custom_all | 129 transition-delay custom_all | 
| 130 transition-duration custom_all | 130 transition-duration custom_all | 
| 131 transition-property custom_all | 131 transition-property custom_all | 
| 132 transition-timing-function custom_all | 132 transition-timing-function custom_all | 
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 611 -webkit-text-size-adjust alias_for=text-size-adjust | 611 -webkit-text-size-adjust alias_for=text-size-adjust | 
| 612 -webkit-transform alias_for=transform | 612 -webkit-transform alias_for=transform | 
| 613 -webkit-transform-origin alias_for=transform-origin | 613 -webkit-transform-origin alias_for=transform-origin | 
| 614 -webkit-transform-style alias_for=transform-style | 614 -webkit-transform-style alias_for=transform-style | 
| 615 -webkit-transition alias_for=transition | 615 -webkit-transition alias_for=transition | 
| 616 -webkit-transition-delay alias_for=transition-delay | 616 -webkit-transition-delay alias_for=transition-delay | 
| 617 -webkit-transition-duration alias_for=transition-duration | 617 -webkit-transition-duration alias_for=transition-duration | 
| 618 -webkit-transition-property alias_for=transition-property | 618 -webkit-transition-property alias_for=transition-property | 
| 619 -webkit-transition-timing-function alias_for=transition-timing-function | 619 -webkit-transition-timing-function alias_for=transition-timing-function | 
| 620 -webkit-user-select alias_for=user-select | 620 -webkit-user-select alias_for=user-select | 
| OLD | NEW |