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 should be virtually identical to the | 7 // Properties specifying alias_for should be virtually identical to the |
8 // properties they alias. Minor parsing differences are allowed as long as | 8 // properties they alias. Minor parsing differences are allowed as long as |
9 // the CSSValues created are of the same format of the aliased property. | 9 // the CSSValues created are of the same format of the aliased property. |
10 | 10 |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 flex-wrap | 180 flex-wrap |
181 float type_name=EFloat, name_for_methods=Floating | 181 float type_name=EFloat, name_for_methods=Floating |
182 flood-color interpolable, svg, converter=convertColor | 182 flood-color interpolable, svg, converter=convertColor |
183 flood-opacity interpolable, svg, converter=convertNumberOrPercentage | 183 flood-opacity interpolable, svg, converter=convertNumberOrPercentage |
184 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation | 184 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation |
185 glyph-orientation-vertical inherited, svg, custom_value | 185 glyph-orientation-vertical inherited, svg, custom_value |
186 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 186 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize |
187 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow | 187 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow |
188 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 188 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize |
189 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 189 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 190 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLengthSizing |
190 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 191 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
191 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 192 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 193 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLengthSizing |
192 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 194 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
193 grid-template-areas runtime_flag=CSSGridLayout, custom_all | 195 grid-template-areas runtime_flag=CSSGridLayout, custom_all |
194 grid-template-columns runtime_flag=CSSGridLayout, custom_all | 196 grid-template-columns runtime_flag=CSSGridLayout, custom_all |
195 grid-template-rows runtime_flag=CSSGridLayout, custom_all | 197 grid-template-rows runtime_flag=CSSGridLayout, custom_all |
196 height interpolable, initial=initialSize, converter=convertLengthSizing | 198 height interpolable, initial=initialSize, converter=convertLengthSizing |
197 image-rendering inherited | 199 image-rendering inherited |
198 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res
pectImageOrientation, converter=convertImageOrientation | 200 image-orientation runtime_flag=ImageOrientation, inherited, name_for_methods=Res
pectImageOrientation, converter=convertImageOrientation |
199 isolation runtime_flag=CSSCompositing | 201 isolation runtime_flag=CSSCompositing |
200 justify-content initial=initialContentAlignment, converter=convertContentAlignme
ntData | 202 justify-content initial=initialContentAlignment, converter=convertContentAlignme
ntData |
201 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte
r=convertSelfOrDefaultAlignmentData | 203 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte
r=convertSelfOrDefaultAlignmentData |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic
al-spacing | 458 border-spacing longhands=-webkit-border-horizontal-spacing;-webkit-border-vertic
al-spacing |
457 border-style longhands=border-top-style;border-right-style;border-bottom-style;b
order-left-style | 459 border-style longhands=border-top-style;border-right-style;border-bottom-style;b
order-left-style |
458 border-top longhands=border-top-width;border-top-style;border-top-color | 460 border-top longhands=border-top-width;border-top-style;border-top-color |
459 border-width longhands=border-top-width;border-right-width;border-bottom-width;b
order-left-width | 461 border-width longhands=border-top-width;border-right-width;border-bottom-width;b
order-left-width |
460 flex longhands=flex-grow;flex-shrink;flex-basis | 462 flex longhands=flex-grow;flex-shrink;flex-basis |
461 flex-flow longhands=flex-direction;flex-wrap | 463 flex-flow longhands=flex-direction;flex-wrap |
462 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h
eight;font-family | 464 font longhands=font-style;font-variant;font-weight;font-stretch;font-size;line-h
eight;font-family |
463 grid runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-template-r
ows;grid-template-areas;grid-auto-flow;grid-auto-columns;grid-auto-rows | 465 grid runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-template-r
ows;grid-template-areas;grid-auto-flow;grid-auto-columns;grid-auto-rows |
464 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start
;grid-row-end;grid-column-end | 466 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start
;grid-row-end;grid-column-end |
465 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column-
end | 467 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column-
end |
| 468 grid-gap runtime_flag=CSSGridLayout, longhands=grid-column-gap;grid-row-gap |
466 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end | 469 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end |
467 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t
emplate-rows;grid-template-areas | 470 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-columns;grid-t
emplate-rows;grid-template-areas |
468 list-style longhands=list-style-type;list-style-position;list-style-image | 471 list-style longhands=list-style-type;list-style-position;list-style-image |
469 margin longhands=margin-top;margin-right;margin-bottom;margin-left | 472 margin longhands=margin-top;margin-right;margin-bottom;margin-left |
470 marker longhands=marker-start;marker-mid;marker-end | 473 marker longhands=marker-start;marker-mid;marker-end |
471 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro
tation | 474 motion runtime_flag=CSSMotionPath, longhands=motion-path;motion-offset;motion-ro
tation |
472 outline longhands=outline-color;outline-style;outline-width | 475 outline longhands=outline-color;outline-style;outline-width |
473 overflow longhands=overflow-x;overflow-y | 476 overflow longhands=overflow-x;overflow-y |
474 padding longhands=padding-top;padding-right;padding-bottom;padding-left | 477 padding longhands=padding-top;padding-right;padding-bottom;padding-left |
475 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 478 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 -webkit-shape-margin alias_for=shape-margin | 540 -webkit-shape-margin alias_for=shape-margin |
538 -webkit-shape-outside alias_for=shape-outside | 541 -webkit-shape-outside alias_for=shape-outside |
539 -webkit-transform alias_for=transform | 542 -webkit-transform alias_for=transform |
540 -webkit-transform-origin alias_for=transform-origin | 543 -webkit-transform-origin alias_for=transform-origin |
541 -webkit-transform-style alias_for=transform-style | 544 -webkit-transform-style alias_for=transform-style |
542 -webkit-transition alias_for=transition | 545 -webkit-transition alias_for=transition |
543 -webkit-transition-delay alias_for=transition-delay | 546 -webkit-transition-delay alias_for=transition-delay |
544 -webkit-transition-duration alias_for=transition-duration | 547 -webkit-transition-duration alias_for=transition-duration |
545 -webkit-transition-property alias_for=transition-property | 548 -webkit-transition-property alias_for=transition-property |
546 -webkit-transition-timing-function alias_for=transition-timing-function | 549 -webkit-transition-timing-function alias_for=transition-timing-function |
OLD | NEW |