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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 512 grid runtime_flag=CSSGridLayout, longhands=grid-template-rows;grid-template-colu mns;grid-template-areas;grid-auto-flow;grid-auto-rows;grid-auto-columns;grid-col umn-gap;grid-row-gap | 512 grid runtime_flag=CSSGridLayout, longhands=grid-template-rows;grid-template-colu mns;grid-template-areas;grid-auto-flow;grid-auto-rows;grid-auto-columns;grid-col umn-gap;grid-row-gap |
| 513 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end | 513 grid-area runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-column-start ;grid-row-end;grid-column-end |
| 514 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end | 514 grid-column runtime_flag=CSSGridLayout, longhands=grid-column-start;grid-column- end |
| 515 grid-gap runtime_flag=CSSGridLayout, longhands=grid-row-gap;grid-column-gap | 515 grid-gap runtime_flag=CSSGridLayout, longhands=grid-row-gap;grid-column-gap |
| 516 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end | 516 grid-row runtime_flag=CSSGridLayout, longhands=grid-row-start;grid-row-end |
| 517 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-rows;grid-temp late-columns;grid-template-areas | 517 grid-template runtime_flag=CSSGridLayout, longhands=grid-template-rows;grid-temp late-columns;grid-template-areas |
| 518 list-style longhands=list-style-type;list-style-position;list-style-image | 518 list-style longhands=list-style-type;list-style-position;list-style-image |
| 519 margin longhands=margin-top;margin-right;margin-bottom;margin-left | 519 margin longhands=margin-top;margin-right;margin-bottom;margin-left |
| 520 marker longhands=marker-start;marker-mid;marker-end | 520 marker longhands=marker-start;marker-mid;marker-end |
| 521 motion longhands=offset-path;offset-distance;offset-rotation | 521 motion longhands=offset-path;offset-distance;offset-rotation |
| 522 offset longhands=offset-path;offset-distance;offset-rotation | 522 offset longhands=offset-position;offset-path;offset-distance;offset-rotation;off set-anchor |
|
Timothy Loh
2016/09/27 08:17:48
I don't think this works with longhands that are c
| |
| 523 outline longhands=outline-color;outline-style;outline-width | 523 outline longhands=outline-color;outline-style;outline-width |
| 524 overflow longhands=overflow-x;overflow-y | 524 overflow longhands=overflow-x;overflow-y |
| 525 padding longhands=padding-top;padding-right;padding-bottom;padding-left | 525 padding longhands=padding-top;padding-right;padding-bottom;padding-left |
| 526 page-break-after longhands=break-after | 526 page-break-after longhands=break-after |
| 527 page-break-before longhands=break-before | 527 page-break-before longhands=break-before |
| 528 page-break-inside longhands=break-inside | 528 page-break-inside longhands=break-inside |
| 529 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay | 529 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay |
| 530 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s tyle;-webkit-border-after-color | 530 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s tyle;-webkit-border-after-color |
| 531 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor e-style;-webkit-border-before-color | 531 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor e-style;-webkit-border-before-color |
| 532 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;- webkit-border-end-color | 532 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;- webkit-border-end-color |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 608 -webkit-text-size-adjust alias_for=text-size-adjust | 608 -webkit-text-size-adjust alias_for=text-size-adjust |
| 609 -webkit-transform alias_for=transform | 609 -webkit-transform alias_for=transform |
| 610 -webkit-transform-origin alias_for=transform-origin | 610 -webkit-transform-origin alias_for=transform-origin |
| 611 -webkit-transform-style alias_for=transform-style | 611 -webkit-transform-style alias_for=transform-style |
| 612 -webkit-transition alias_for=transition | 612 -webkit-transition alias_for=transition |
| 613 -webkit-transition-delay alias_for=transition-delay | 613 -webkit-transition-delay alias_for=transition-delay |
| 614 -webkit-transition-duration alias_for=transition-duration | 614 -webkit-transition-duration alias_for=transition-duration |
| 615 -webkit-transition-property alias_for=transition-property | 615 -webkit-transition-property alias_for=transition-property |
| 616 -webkit-transition-timing-function alias_for=transition-timing-function | 616 -webkit-transition-timing-function alias_for=transition-timing-function |
| 617 -webkit-user-select alias_for=user-select | 617 -webkit-user-select alias_for=user-select |
| OLD | NEW |