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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 cx interpolable, svg, converter=convertLength | 249 cx interpolable, svg, converter=convertLength |
250 cy interpolable, svg, converter=convertLength | 250 cy interpolable, svg, converter=convertLength |
251 d interpolable, svg, converter=convertPathOrNone | 251 d interpolable, svg, converter=convertPathOrNone |
252 display | 252 display |
253 dominant-baseline inherited, svg | 253 dominant-baseline inherited, svg |
254 empty-cells inherited, independent, type_name=EEmptyCells, keyword_only, keyword
s=[show|hide], initial_keyword=show | 254 empty-cells inherited, independent, type_name=EEmptyCells, keyword_only, keyword
s=[show|hide], initial_keyword=show |
255 fill interpolable, inherited, svg, setter=setFillPaint, custom_all | 255 fill interpolable, inherited, svg, setter=setFillPaint, custom_all |
256 fill-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage | 256 fill-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage |
257 fill-rule inherited, svg, type_name=WindRule | 257 fill-rule inherited, svg, type_name=WindRule |
258 filter interpolable, converter=convertFilterOperations | 258 filter interpolable, converter=convertFilterOperations |
259 flex-basis interpolable, converter=convertLengthOrAuto | 259 flex-basis interpolable, converter=convertLengthOrAuto, api_class |
260 flex-direction | 260 flex-direction |
261 flex-grow interpolable, type_name=float | 261 flex-grow interpolable, type_name=float |
262 flex-shrink interpolable, type_name=float | 262 flex-shrink interpolable, type_name=float |
263 flex-wrap | 263 flex-wrap |
264 float type_name=EFloat, name_for_methods=Floating, keyword_only, keywords=[none|
left|right], initial_keyword=none | 264 float type_name=EFloat, name_for_methods=Floating, keyword_only, keywords=[none|
left|right], initial_keyword=none |
265 flood-color interpolable, svg, converter=convertColor | 265 flood-color interpolable, svg, converter=convertColor |
266 flood-opacity interpolable, svg, converter=convertNumberOrPercentage | 266 flood-opacity interpolable, svg, converter=convertNumberOrPercentage |
267 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList | 267 grid-auto-columns runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList |
268 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow, type_n
ame=GridAutoFlow | 268 grid-auto-flow runtime_flag=CSSGridLayout, converter=convertGridAutoFlow, type_n
ame=GridAutoFlow |
269 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList | 269 grid-auto-rows runtime_flag=CSSGridLayout, converter=convertGridTrackSizeList |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 -webkit-text-size-adjust alias_for=text-size-adjust | 650 -webkit-text-size-adjust alias_for=text-size-adjust |
651 -webkit-transform alias_for=transform | 651 -webkit-transform alias_for=transform |
652 -webkit-transform-origin alias_for=transform-origin | 652 -webkit-transform-origin alias_for=transform-origin |
653 -webkit-transform-style alias_for=transform-style | 653 -webkit-transform-style alias_for=transform-style |
654 -webkit-transition alias_for=transition | 654 -webkit-transition alias_for=transition |
655 -webkit-transition-delay alias_for=transition-delay | 655 -webkit-transition-delay alias_for=transition-delay |
656 -webkit-transition-duration alias_for=transition-duration | 656 -webkit-transition-duration alias_for=transition-duration |
657 -webkit-transition-property alias_for=transition-property | 657 -webkit-transition-property alias_for=transition-property |
658 -webkit-transition-timing-function alias_for=transition-timing-function | 658 -webkit-transition-timing-function alias_for=transition-timing-function |
659 -webkit-user-select alias_for=user-select | 659 -webkit-user-select alias_for=user-select |
OLD | NEW |