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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 speak inherited | 252 speak inherited |
253 stop-color animatable, svg, converter=convertSVGColor | 253 stop-color animatable, svg, converter=convertSVGColor |
254 stop-opacity animatable, svg, converter=convertNumberOrPercentage | 254 stop-opacity animatable, svg, converter=convertNumberOrPercentage |
255 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all | 255 stroke animatable, inherited, svg, setter=setStrokePaint, custom_all |
256 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c
onverter=convertStrokeDasharray | 256 stroke-dasharray animatable, inherited, svg, name_for_methods=StrokeDashArray, c
onverter=convertStrokeDasharray |
257 stroke-dashoffset animatable, inherited, svg, name_for_methods=StrokeDashOffset,
converter=convertLength | 257 stroke-dashoffset animatable, inherited, svg, name_for_methods=StrokeDashOffset,
converter=convertLength |
258 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle | 258 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle |
259 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle | 259 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle |
260 stroke-miterlimit animatable, inherited, svg, type_name=float, name_for_methods=
StrokeMiterLimit | 260 stroke-miterlimit animatable, inherited, svg, type_name=float, name_for_methods=
StrokeMiterLimit |
261 stroke-opacity animatable, inherited, svg, converter=convertNumberOrPercentage | 261 stroke-opacity animatable, inherited, svg, converter=convertNumberOrPercentage |
262 stroke-width animatable, inherited, svg, converter=convertSVGLength | 262 stroke-width animatable, inherited, svg, converter=convertUnzoomedLength |
263 table-layout | 263 table-layout |
264 tab-size inherited, converter=convertLengthOrTabSpaces | 264 tab-size inherited, converter=convertLengthOrTabSpaces |
265 text-align inherited, custom_value | 265 text-align inherited, custom_value |
266 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast | 266 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast |
267 text-anchor inherited, svg | 267 text-anchor inherited, svg |
268 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag | 268 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag |
269 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 269 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
270 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all | 270 text-decoration-color runtime_flag=CSS3TextDecorations, animatable, custom_all |
271 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, converter=convertFlags<TextDecoration> | 271 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, converter=convertFlags<TextDecoration> |
272 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style | 272 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 -webkit-flex-flow alias_for=flex-flow | 524 -webkit-flex-flow alias_for=flex-flow |
525 -webkit-flex-grow alias_for=flex-grow | 525 -webkit-flex-grow alias_for=flex-grow |
526 -webkit-flex-shrink alias_for=flex-shrink | 526 -webkit-flex-shrink alias_for=flex-shrink |
527 -webkit-flex-wrap alias_for=flex-wrap | 527 -webkit-flex-wrap alias_for=flex-wrap |
528 -webkit-justify-content alias_for=justify-content | 528 -webkit-justify-content alias_for=justify-content |
529 -webkit-opacity alias_for=opacity | 529 -webkit-opacity alias_for=opacity |
530 -webkit-order alias_for=order | 530 -webkit-order alias_for=order |
531 -webkit-shape-image-threshold alias_for=shape-image-threshold | 531 -webkit-shape-image-threshold alias_for=shape-image-threshold |
532 -webkit-shape-margin alias_for=shape-margin | 532 -webkit-shape-margin alias_for=shape-margin |
533 -webkit-shape-outside alias_for=shape-outside | 533 -webkit-shape-outside alias_for=shape-outside |
OLD | NEW |