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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 unicode-bidi | 214 unicode-bidi |
215 vertical-align animatable, custom_inherit, custom_value | 215 vertical-align animatable, custom_inherit, custom_value |
216 animation-delay custom_all | 216 animation-delay custom_all |
217 animation-direction custom_all | 217 animation-direction custom_all |
218 animation-duration custom_all | 218 animation-duration custom_all |
219 animation-fill-mode custom_all | 219 animation-fill-mode custom_all |
220 animation-iteration-count custom_all | 220 animation-iteration-count custom_all |
221 animation-name custom_all | 221 animation-name custom_all |
222 animation-play-state custom_all | 222 animation-play-state custom_all |
223 animation-timing-function custom_all | 223 animation-timing-function custom_all |
| 224 filter animatable, custom_value |
224 -webkit-aspect-ratio inherited, custom_all | 225 -webkit-aspect-ratio inherited, custom_all |
225 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility | 226 -webkit-backface-visibility use_handlers_for=CSSPropertyBackfaceVisibility |
226 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip | 227 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip |
227 -webkit-background-composite custom_all | 228 -webkit-background-composite custom_all |
228 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin | 229 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin |
229 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize | 230 -webkit-background-size animatable, use_handlers_for=CSSPropertyBackgroundSize |
230 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo
ntalBorderSpacing, converter=convertComputedLength<short> | 231 -webkit-border-horizontal-spacing animatable, inherited, name_for_methods=Horizo
ntalBorderSpacing, converter=convertComputedLength<short> |
231 -webkit-border-image initial=initialNinePieceImage, custom_value | 232 -webkit-border-image initial=initialNinePieceImage, custom_value |
232 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical
BorderSpacing, converter=convertComputedLength<short> | 233 -webkit-border-vertical-spacing animatable, inherited, name_for_methods=Vertical
BorderSpacing, converter=convertComputedLength<short> |
233 -webkit-box-decoration-break | 234 -webkit-box-decoration-break |
234 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow | 235 -webkit-box-shadow animatable, use_handlers_for=CSSPropertyBoxShadow |
235 -webkit-clip-path animatable, custom_value | 236 -webkit-clip-path animatable, custom_value |
236 -webkit-filter animatable, custom_value | |
237 -webkit-highlight inherited, converter=convertString<CSSValueNone> | 237 -webkit-highlight inherited, converter=convertString<CSSValueNone> |
238 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve
rter=convertString<CSSValueAuto> | 238 -webkit-hyphenate-character inherited, name_for_methods=HyphenationString, conve
rter=convertString<CSSValueAuto> |
239 -webkit-line-box-contain inherited, converter=convertLineBoxContain | 239 -webkit-line-box-contain inherited, converter=convertLineBoxContain |
240 -webkit-line-break inherited, type_name=LineBreak | 240 -webkit-line-break inherited, type_name=LineBreak |
241 -webkit-mask-box-image-outset animatable, custom_all | 241 -webkit-mask-box-image-outset animatable, custom_all |
242 -webkit-mask-box-image-repeat custom_all | 242 -webkit-mask-box-image-repeat custom_all |
243 -webkit-mask-box-image-slice animatable, custom_all | 243 -webkit-mask-box-image-slice animatable, custom_all |
244 -webkit-mask-box-image-source animatable, custom_value | 244 -webkit-mask-box-image-source animatable, custom_value |
245 -webkit-mask-box-image-width animatable, custom_all | 245 -webkit-mask-box-image-width animatable, custom_all |
246 -webkit-mask-clip custom_all | 246 -webkit-mask-clip custom_all |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 -webkit-flex alias_for=flex | 384 -webkit-flex alias_for=flex |
385 -webkit-flex-basis alias_for=flex-basis | 385 -webkit-flex-basis alias_for=flex-basis |
386 -webkit-flex-direction alias_for=flex-direction | 386 -webkit-flex-direction alias_for=flex-direction |
387 -webkit-flex-flow alias_for=flex-flow | 387 -webkit-flex-flow alias_for=flex-flow |
388 -webkit-flex-grow alias_for=flex-grow | 388 -webkit-flex-grow alias_for=flex-grow |
389 -webkit-flex-shrink alias_for=flex-shrink | 389 -webkit-flex-shrink alias_for=flex-shrink |
390 -webkit-flex-wrap alias_for=flex-wrap | 390 -webkit-flex-wrap alias_for=flex-wrap |
391 -webkit-justify-content alias_for=justify-content | 391 -webkit-justify-content alias_for=justify-content |
392 -webkit-opacity alias_for=opacity | 392 -webkit-opacity alias_for=opacity |
393 -webkit-order alias_for=order | 393 -webkit-order alias_for=order |
OLD | NEW |