| 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 // We should remove all those marked OBSOLETE now | 5 // We should remove all those marked OBSOLETE now |
| 6 // We should remove all those marked LAYOUT once we have custom layout | 6 // We should remove all those marked LAYOUT once we have custom layout |
| 7 // We should remove all those marked ANIMATIONS once we have an animation system | 7 // We should remove all those marked ANIMATIONS once we have an animation system |
| 8 | 8 |
| 9 // - alias_for=other-property | 9 // - alias_for=other-property |
| 10 // Properties specifying alias_for do not get their own enum and instead map | 10 // Properties specifying alias_for do not get their own enum and instead map |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 // LAYOUT | 227 // LAYOUT |
| 228 min-width animatable, initial=initialMinSize, converter=convertLengthSizing | 228 min-width animatable, initial=initialMinSize, converter=convertLengthSizing |
| 229 | 229 |
| 230 object-fit runtime_flag=ObjectFitPosition, type_name=ObjectFit | 230 object-fit runtime_flag=ObjectFitPosition, type_name=ObjectFit |
| 231 object-position runtime_flag=ObjectFitPosition, animatable, converter=convertLen
gthPoint | 231 object-position runtime_flag=ObjectFitPosition, animatable, converter=convertLen
gthPoint |
| 232 opacity animatable, type_name=float | 232 opacity animatable, type_name=float |
| 233 | 233 |
| 234 // LAYOUT | 234 // LAYOUT |
| 235 order type_name=int | 235 order type_name=int |
| 236 | 236 |
| 237 // OBSOLETE | |
| 238 orphans animatable, inherited, type_name=short, custom_all | |
| 239 | |
| 240 outline-color animatable, custom_all | 237 outline-color animatable, custom_all |
| 241 outline-offset animatable, converter=convertComputedLength<int> | 238 outline-offset animatable, converter=convertComputedLength<int> |
| 242 outline-style custom_all | 239 outline-style custom_all |
| 243 outline-width animatable, converter=convertLineWidth<unsigned short> | 240 outline-width animatable, converter=convertLineWidth<unsigned short> |
| 244 | 241 |
| 245 // OBSOLETE | 242 // OBSOLETE |
| 246 overflow-wrap inherited | 243 overflow-wrap inherited |
| 247 | 244 |
| 248 // OBSOLETE | 245 // OBSOLETE |
| 249 overflow-x type_name=EOverflow | 246 overflow-x type_name=EOverflow |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 -webkit-flex alias_for=flex | 572 -webkit-flex alias_for=flex |
| 576 -webkit-flex-basis alias_for=flex-basis | 573 -webkit-flex-basis alias_for=flex-basis |
| 577 -webkit-flex-direction alias_for=flex-direction | 574 -webkit-flex-direction alias_for=flex-direction |
| 578 -webkit-flex-flow alias_for=flex-flow | 575 -webkit-flex-flow alias_for=flex-flow |
| 579 -webkit-flex-grow alias_for=flex-grow | 576 -webkit-flex-grow alias_for=flex-grow |
| 580 -webkit-flex-shrink alias_for=flex-shrink | 577 -webkit-flex-shrink alias_for=flex-shrink |
| 581 -webkit-flex-wrap alias_for=flex-wrap | 578 -webkit-flex-wrap alias_for=flex-wrap |
| 582 -webkit-justify-content alias_for=justify-content | 579 -webkit-justify-content alias_for=justify-content |
| 583 -webkit-opacity alias_for=opacity | 580 -webkit-opacity alias_for=opacity |
| 584 -webkit-order alias_for=order | 581 -webkit-order alias_for=order |
| OLD | NEW |