| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 -webkit-animation-iteration-count custom_all | 245 -webkit-animation-iteration-count custom_all |
| 246 -webkit-animation-name custom_all | 246 -webkit-animation-name custom_all |
| 247 -webkit-animation-play-state custom_all | 247 -webkit-animation-play-state custom_all |
| 248 -webkit-animation-timing-function custom_all | 248 -webkit-animation-timing-function custom_all |
| 249 -webkit-aspect-ratio inherited, custom_all | 249 -webkit-aspect-ratio inherited, custom_all |
| 250 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility | 250 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility |
| 251 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip | 251 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip |
| 252 -webkit-background-composite custom_all | 252 -webkit-background-composite custom_all |
| 253 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin | 253 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin |
| 254 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize | 254 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize |
| 255 -webkit-border-fit | |
| 256 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo
ntalBorderSpacing, converter=convertComputedLength<short> | 255 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo
ntalBorderSpacing, converter=convertComputedLength<short> |
| 257 -webkit-border-image initial=initialNinePieceImage, custom_value | 256 -webkit-border-image initial=initialNinePieceImage, custom_value |
| 258 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical
BorderSpacing, converter=convertComputedLength<short> | 257 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical
BorderSpacing, converter=convertComputedLength<short> |
| 259 -webkit-box-decoration-break | 258 -webkit-box-decoration-break |
| 260 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow | 259 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow |
| 261 -webkit-clip-path animatable, custom_value | 260 -webkit-clip-path animatable, custom_value |
| 262 -webkit-filter animatable, custom_value | 261 -webkit-filter animatable, custom_value |
| 263 -webkit-highlight inherited, converter=convertString<CSSValueNone> | 262 -webkit-highlight inherited, converter=convertString<CSSValueNone> |
| 264 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve
rter=convertString<CSSValueAuto> | 263 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve
rter=convertString<CSSValueAuto> |
| 265 -webkit-line-box-contain inherited, converter=convertLineBoxContain | 264 -webkit-line-box-contain inherited, converter=convertLineBoxContain |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 -webkit-flex-flow alias_for=flex-flow | 442 -webkit-flex-flow alias_for=flex-flow |
| 444 -webkit-flex-grow alias_for=flex-grow | 443 -webkit-flex-grow alias_for=flex-grow |
| 445 -webkit-flex-shrink alias_for=flex-shrink | 444 -webkit-flex-shrink alias_for=flex-shrink |
| 446 -webkit-flex-wrap alias_for=flex-wrap | 445 -webkit-flex-wrap alias_for=flex-wrap |
| 447 -webkit-justify-content alias_for=justify-content | 446 -webkit-justify-content alias_for=justify-content |
| 448 -webkit-opacity alias_for=opacity | 447 -webkit-opacity alias_for=opacity |
| 449 -webkit-order alias_for=order | 448 -webkit-order alias_for=order |
| 450 -webkit-shape-image-threshold alias_for=shape-image-threshold | 449 -webkit-shape-image-threshold alias_for=shape-image-threshold |
| 451 -webkit-shape-margin alias_for=shape-margin | 450 -webkit-shape-margin alias_for=shape-margin |
| 452 -webkit-shape-outside alias_for=shape-outside | 451 -webkit-shape-outside alias_for=shape-outside |
| OLD | NEW |