| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 fill-rule inherited, svg, type_name=WindRule | 200 fill-rule inherited, svg, type_name=WindRule |
| 201 filter interpolable, converter=convertFilterOperations | 201 filter interpolable, converter=convertFilterOperations |
| 202 flex-basis interpolable, converter=convertLengthOrAuto | 202 flex-basis interpolable, converter=convertLengthOrAuto |
| 203 flex-direction | 203 flex-direction |
| 204 flex-grow interpolable, type_name=float | 204 flex-grow interpolable, type_name=float |
| 205 flex-shrink interpolable, type_name=float | 205 flex-shrink interpolable, type_name=float |
| 206 flex-wrap | 206 flex-wrap |
| 207 float type_name=EFloat, name_for_methods=Floating | 207 float type_name=EFloat, name_for_methods=Floating |
| 208 flood-color interpolable, svg, converter=convertColor | 208 flood-color interpolable, svg, converter=convertColor |
| 209 flood-opacity interpolable, svg, converter=convertNumberOrPercentage | 209 flood-opacity interpolable, svg, converter=convertNumberOrPercentage |
| 210 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 210 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList |
| 211 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow, type_n
ame=GridAutoFlow | 211 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow, type_n
ame=GridAutoFlow |
| 212 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 212 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList |
| 213 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 213 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 214 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLength | 214 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLength |
| 215 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 215 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 216 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 216 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 217 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLength | 217 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLength |
| 218 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 218 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 219 grid-template-areas runtime_flag=CSSGridLayout, custom_all | 219 grid-template-areas runtime_flag=CSSGridLayout, custom_all |
| 220 grid-template-columns runtime_flag=CSSGridLayout, custom_all | 220 grid-template-columns runtime_flag=CSSGridLayout, custom_all |
| 221 grid-template-rows runtime_flag=CSSGridLayout, custom_all | 221 grid-template-rows runtime_flag=CSSGridLayout, custom_all |
| 222 height typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl
e, initial=initialSize, converter=convertLengthSizing | 222 height typedom_types=[Length], keywords=[auto], supports_percentage, interpolabl
e, initial=initialSize, converter=convertLengthSizing |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 -webkit-shape-outside alias_for=shape-outside | 580 -webkit-shape-outside alias_for=shape-outside |
| 581 -webkit-text-size-adjust alias_for=text-size-adjust | 581 -webkit-text-size-adjust alias_for=text-size-adjust |
| 582 -webkit-transform alias_for=transform | 582 -webkit-transform alias_for=transform |
| 583 -webkit-transform-origin alias_for=transform-origin | 583 -webkit-transform-origin alias_for=transform-origin |
| 584 -webkit-transform-style alias_for=transform-style | 584 -webkit-transform-style alias_for=transform-style |
| 585 -webkit-transition alias_for=transition | 585 -webkit-transition alias_for=transition |
| 586 -webkit-transition-delay alias_for=transition-delay | 586 -webkit-transition-delay alias_for=transition-delay |
| 587 -webkit-transition-duration alias_for=transition-duration | 587 -webkit-transition-duration alias_for=transition-duration |
| 588 -webkit-transition-property alias_for=transition-property | 588 -webkit-transition-property alias_for=transition-property |
| 589 -webkit-transition-timing-function alias_for=transition-timing-function | 589 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |