| 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 do not get their own enum and instead map | 7 // Properties specifying alias_for do not get their own enum and instead map |
| 8 // directly onto the CSSPropertyID they alias. Currently this means that the | 8 // directly onto the CSSPropertyID they alias. Currently this means that the |
| 9 // UseCounter will not pick up on these (crbug.com/304855) | 9 // UseCounter will not pick up on these (crbug.com/304855) |
| 10 | 10 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 -webkit-mask-origin custom_all | 249 -webkit-mask-origin custom_all |
| 250 -webkit-mask-position-x animatable, custom_all | 250 -webkit-mask-position-x animatable, custom_all |
| 251 -webkit-mask-position-y animatable, custom_all | 251 -webkit-mask-position-y animatable, custom_all |
| 252 -webkit-mask-repeat-x custom_all | 252 -webkit-mask-repeat-x custom_all |
| 253 -webkit-mask-repeat-y custom_all | 253 -webkit-mask-repeat-y custom_all |
| 254 -webkit-mask-size animatable, custom_all | 254 -webkit-mask-size animatable, custom_all |
| 255 -webkit-perspective custom_all | 255 -webkit-perspective custom_all |
| 256 -webkit-perspective-origin custom_all | 256 -webkit-perspective-origin custom_all |
| 257 -webkit-perspective-origin-x converter=convertLength | 257 -webkit-perspective-origin-x converter=convertLength |
| 258 -webkit-perspective-origin-y converter=convertLength | 258 -webkit-perspective-origin-y converter=convertLength |
| 259 -webkit-print-color-adjust inherited, type_name=PrintColorAdjust | |
| 260 -webkit-rtl-ordering inherited, type_name=Order, setter=setRTLOrdering, initial=
initialRTLOrdering | 259 -webkit-rtl-ordering inherited, type_name=Order, setter=setRTLOrdering, initial=
initialRTLOrdering |
| 261 -webkit-tap-highlight-color inherited, converter=convertColor | 260 -webkit-tap-highlight-color inherited, converter=convertColor |
| 262 -webkit-text-emphasis-color inherited, custom_all | 261 -webkit-text-emphasis-color inherited, custom_all |
| 263 -webkit-text-emphasis-position inherited, type_name=TextEmphasisPosition | 262 -webkit-text-emphasis-position inherited, type_name=TextEmphasisPosition |
| 264 -webkit-text-emphasis-style inherited, custom_all | 263 -webkit-text-emphasis-style inherited, custom_all |
| 265 -webkit-text-fill-color inherited, custom_all | 264 -webkit-text-fill-color inherited, custom_all |
| 266 -webkit-text-stroke-color animatable, inherited, custom_all | 265 -webkit-text-stroke-color animatable, inherited, custom_all |
| 267 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth | 266 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth |
| 268 -webkit-transform use_handlers_for=CSSPropertyTransform | 267 -webkit-transform use_handlers_for=CSSPropertyTransform |
| 269 -webkit-transform-origin-x converter=convertLength | 268 -webkit-transform-origin-x converter=convertLength |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 -webkit-flex alias_for=flex | 399 -webkit-flex alias_for=flex |
| 401 -webkit-flex-basis alias_for=flex-basis | 400 -webkit-flex-basis alias_for=flex-basis |
| 402 -webkit-flex-direction alias_for=flex-direction | 401 -webkit-flex-direction alias_for=flex-direction |
| 403 -webkit-flex-flow alias_for=flex-flow | 402 -webkit-flex-flow alias_for=flex-flow |
| 404 -webkit-flex-grow alias_for=flex-grow | 403 -webkit-flex-grow alias_for=flex-grow |
| 405 -webkit-flex-shrink alias_for=flex-shrink | 404 -webkit-flex-shrink alias_for=flex-shrink |
| 406 -webkit-flex-wrap alias_for=flex-wrap | 405 -webkit-flex-wrap alias_for=flex-wrap |
| 407 -webkit-justify-content alias_for=justify-content | 406 -webkit-justify-content alias_for=justify-content |
| 408 -webkit-opacity alias_for=opacity | 407 -webkit-opacity alias_for=opacity |
| 409 -webkit-order alias_for=order | 408 -webkit-order alias_for=order |
| OLD | NEW |