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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 fill-rule inherited, svg, type_name=WindRule | 177 fill-rule inherited, svg, type_name=WindRule |
178 filter svg, name_for_methods=FilterResource, converter=convertFragmentIdentifier | 178 filter svg, name_for_methods=FilterResource, converter=convertFragmentIdentifier |
179 flex-basis interpolable, converter=convertLengthOrAuto | 179 flex-basis interpolable, converter=convertLengthOrAuto |
180 flex-direction | 180 flex-direction |
181 flex-grow interpolable, type_name=float | 181 flex-grow interpolable, type_name=float |
182 flex-shrink interpolable, type_name=float | 182 flex-shrink interpolable, type_name=float |
183 flex-wrap | 183 flex-wrap |
184 float type_name=EFloat, name_for_methods=Floating | 184 float type_name=EFloat, name_for_methods=Floating |
185 flood-color interpolable, svg, converter=convertColor | 185 flood-color interpolable, svg, converter=convertColor |
186 flood-opacity interpolable, svg, converter=convertNumberOrPercentage | 186 flood-opacity interpolable, svg, converter=convertNumberOrPercentage |
187 glyph-orientation-horizontal inherited, svg, converter=convertGlyphOrientation | |
188 glyph-orientation-vertical inherited, svg, custom_value | |
189 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 187 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSize |
190 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow | 188 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow |
191 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize | 189 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSize |
192 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 190 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
193 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLength | 191 grid-column-gap runtime_flag=CSSGridLayout, converter=convertLength |
194 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 192 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
195 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 193 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
196 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLength | 194 grid-row-gap runtime_flag=CSSGridLayout, converter=convertLength |
197 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 195 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
198 grid-template-areas runtime_flag=CSSGridLayout, custom_all | 196 grid-template-areas runtime_flag=CSSGridLayout, custom_all |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 -webkit-shape-margin alias_for=shape-margin | 538 -webkit-shape-margin alias_for=shape-margin |
541 -webkit-shape-outside alias_for=shape-outside | 539 -webkit-shape-outside alias_for=shape-outside |
542 -webkit-transform alias_for=transform | 540 -webkit-transform alias_for=transform |
543 -webkit-transform-origin alias_for=transform-origin | 541 -webkit-transform-origin alias_for=transform-origin |
544 -webkit-transform-style alias_for=transform-style | 542 -webkit-transform-style alias_for=transform-style |
545 -webkit-transition alias_for=transition | 543 -webkit-transition alias_for=transition |
546 -webkit-transition-delay alias_for=transition-delay | 544 -webkit-transition-delay alias_for=transition-delay |
547 -webkit-transition-duration alias_for=transition-duration | 545 -webkit-transition-duration alias_for=transition-duration |
548 -webkit-transition-property alias_for=transition-property | 546 -webkit-transition-property alias_for=transition-property |
549 -webkit-transition-timing-function alias_for=transition-timing-function | 547 -webkit-transition-timing-function alias_for=transition-timing-function |
OLD | NEW |