| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // OBSOLETE | 272 // OBSOLETE |
| 273 quotes inherited, converter=convertQuotes | 273 quotes inherited, converter=convertQuotes |
| 274 | 274 |
| 275 // LAYOUT | 275 // LAYOUT |
| 276 right animatable, initial=initialOffset, converter=convertLengthOrAuto | 276 right animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 277 | 277 |
| 278 // OBSOLETE | 278 // OBSOLETE |
| 279 size custom_all | 279 size custom_all |
| 280 | 280 |
| 281 // OBSOLETE | 281 // OBSOLETE |
| 282 speak inherited | |
| 283 | |
| 284 // OBSOLETE | |
| 285 table-layout | 282 table-layout |
| 286 | 283 |
| 287 tab-size inherited, type_name=unsigned | 284 tab-size inherited, type_name=unsigned |
| 288 text-align inherited, custom_value | 285 text-align inherited, custom_value |
| 289 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast | 286 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast |
| 290 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag | 287 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag |
| 291 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 288 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
| 292 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all | 289 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all |
| 293 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, converter=convertFlags<TextDecoration> | 290 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, converter=convertFlags<TextDecoration> |
| 294 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style | 291 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color | 529 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color |
| 533 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color | 530 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color |
| 534 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color | 531 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color |
| 535 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" | 532 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" |
| 536 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius | 533 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius |
| 537 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color | 534 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color |
| 538 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color | 535 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color |
| 539 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r | 536 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r |
| 540 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z | 537 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z |
| 541 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 538 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
| OLD | NEW |