Chromium Code Reviews| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 163 color-interpolation-filters inherited, svg, type_name=EColorInterpolation | 163 color-interpolation-filters inherited, svg, type_name=EColorInterpolation |
| 164 color-rendering inherited, svg | 164 color-rendering inherited, svg |
| 165 column-fill runtime_flag=ColumnFill, type_name=ColumnFill | 165 column-fill runtime_flag=ColumnFill, type_name=ColumnFill |
| 166 contain runtime_flag=CSSContainment, converter=convertFlags<Containment> | 166 contain runtime_flag=CSSContainment, converter=convertFlags<Containment> |
| 167 content custom_all | 167 content custom_all |
| 168 counter-increment custom_all | 168 counter-increment custom_all |
| 169 counter-reset custom_all | 169 counter-reset custom_all |
| 170 cursor inherited, custom_all | 170 cursor inherited, custom_all |
| 171 cx interpolable, svg, converter=convertLength | 171 cx interpolable, svg, converter=convertLength |
| 172 cy interpolable, svg, converter=convertLength | 172 cy interpolable, svg, converter=convertLength |
| 173 d runtime_flag=CSSPropertyD, svg, custom_all | |
|
fs
2015/12/11 13:01:58
Looks like we could make this converted=convertPat
Eric Willigers
2015/12/14 05:36:46
Done.
| |
| 173 display | 174 display |
| 174 dominant-baseline inherited, svg | 175 dominant-baseline inherited, svg |
| 175 empty-cells inherited, type_name=EEmptyCell | 176 empty-cells inherited, type_name=EEmptyCell |
| 176 fill interpolable, inherited, svg, setter=setFillPaint, custom_all | 177 fill interpolable, inherited, svg, setter=setFillPaint, custom_all |
| 177 fill-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage | 178 fill-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage |
| 178 fill-rule inherited, svg, type_name=WindRule | 179 fill-rule inherited, svg, type_name=WindRule |
| 179 filter svg, name_for_methods=FilterResource, converter=convertFragmentIdentifier | 180 filter svg, name_for_methods=FilterResource, converter=convertFragmentIdentifier |
| 180 flex-basis interpolable, converter=convertLengthOrAuto | 181 flex-basis interpolable, converter=convertLengthOrAuto |
| 181 flex-direction | 182 flex-direction |
| 182 flex-grow interpolable, type_name=float | 183 flex-grow interpolable, type_name=float |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 541 -webkit-shape-margin alias_for=shape-margin | 542 -webkit-shape-margin alias_for=shape-margin |
| 542 -webkit-shape-outside alias_for=shape-outside | 543 -webkit-shape-outside alias_for=shape-outside |
| 543 -webkit-transform alias_for=transform | 544 -webkit-transform alias_for=transform |
| 544 -webkit-transform-origin alias_for=transform-origin | 545 -webkit-transform-origin alias_for=transform-origin |
| 545 -webkit-transform-style alias_for=transform-style | 546 -webkit-transform-style alias_for=transform-style |
| 546 -webkit-transition alias_for=transition | 547 -webkit-transition alias_for=transition |
| 547 -webkit-transition-delay alias_for=transition-delay | 548 -webkit-transition-delay alias_for=transition-delay |
| 548 -webkit-transition-duration alias_for=transition-duration | 549 -webkit-transition-duration alias_for=transition-duration |
| 549 -webkit-transition-property alias_for=transition-property | 550 -webkit-transition-property alias_for=transition-property |
| 550 -webkit-transition-timing-function alias_for=transition-timing-function | 551 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |