Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1131)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.in

Issue 2662573002: [css-align] Implement place-content alignment shorthand (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 margin longhands=margin-top;margin-right;margin-bottom;margin-left 566 margin longhands=margin-top;margin-right;margin-bottom;margin-left
567 marker longhands=marker-start;marker-mid;marker-end 567 marker longhands=marker-start;marker-mid;marker-end
568 motion longhands=offset-path;offset-distance;offset-rotation 568 motion longhands=offset-path;offset-distance;offset-rotation
569 offset longhands=offset-path;offset-distance;offset-rotation 569 offset longhands=offset-path;offset-distance;offset-rotation
570 outline longhands=outline-color;outline-style;outline-width 570 outline longhands=outline-color;outline-style;outline-width
571 overflow longhands=overflow-x;overflow-y 571 overflow longhands=overflow-x;overflow-y
572 padding longhands=padding-top;padding-right;padding-bottom;padding-left 572 padding longhands=padding-top;padding-right;padding-bottom;padding-left
573 page-break-after longhands=break-after 573 page-break-after longhands=break-after
574 page-break-before longhands=break-before 574 page-break-before longhands=break-before
575 page-break-inside longhands=break-inside 575 page-break-inside longhands=break-inside
576 place-content runtime_flag=CSSGridLayout, longhands=align-content;justify-conten t
Timothy Loh 2017/02/06 23:15:14 This is a JSON file now btw, needs some rebasing.
jfernandez 2017/02/10 00:31:20 Acknowledged.
576 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay 577 transition longhands=transition-property;transition-duration;transition-timing-f unction;transition-delay
577 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s tyle;-webkit-border-after-color 578 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s tyle;-webkit-border-after-color
578 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor e-style;-webkit-border-before-color 579 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor e-style;-webkit-border-before-color
579 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;- webkit-border-end-color 580 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;- webkit-border-end-color
580 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s tyle;-webkit-border-start-color 581 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s tyle;-webkit-border-start-color
581 -webkit-column-break-after longhands=break-after 582 -webkit-column-break-after longhands=break-after
582 -webkit-column-break-before longhands=break-before 583 -webkit-column-break-before longhands=break-before
583 -webkit-column-break-inside longhands=break-inside 584 -webkit-column-break-inside longhands=break-inside
584 column-rule longhands=column-rule-width;column-rule-style;column-rule-color 585 column-rule longhands=column-rule-width;column-rule-style;column-rule-color
585 columns longhands=column-width;column-count 586 columns longhands=column-width;column-count
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 -webkit-text-size-adjust alias_for=text-size-adjust 656 -webkit-text-size-adjust alias_for=text-size-adjust
656 -webkit-transform alias_for=transform 657 -webkit-transform alias_for=transform
657 -webkit-transform-origin alias_for=transform-origin 658 -webkit-transform-origin alias_for=transform-origin
658 -webkit-transform-style alias_for=transform-style 659 -webkit-transform-style alias_for=transform-style
659 -webkit-transition alias_for=transition 660 -webkit-transition alias_for=transition
660 -webkit-transition-delay alias_for=transition-delay 661 -webkit-transition-delay alias_for=transition-delay
661 -webkit-transition-duration alias_for=transition-duration 662 -webkit-transition-duration alias_for=transition-duration
662 -webkit-transition-property alias_for=transition-property 663 -webkit-transition-property alias_for=transition-property
663 -webkit-transition-timing-function alias_for=transition-timing-function 664 -webkit-transition-timing-function alias_for=transition-timing-function
664 -webkit-user-select alias_for=user-select 665 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698