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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/resources/flexbox.css

Issue 2832503003: [css-flex] Implement the space-evenly content-distribution value (Closed)
Patch Set: Fixed layout tests. Created 3 years, 6 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 .flexbox { 1 .flexbox {
2 display: -webkit-flex; 2 display: -webkit-flex;
3 display: flex; 3 display: flex;
4 } 4 }
5 .inline-flexbox { 5 .inline-flexbox {
6 display: -webkit-inline-flex; 6 display: -webkit-inline-flex;
7 display: inline-flex; 7 display: inline-flex;
8 } 8 }
9 9
10 .flex-none { 10 .flex-none {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 align-content: center; 63 align-content: center;
64 } 64 }
65 .align-content-space-between { 65 .align-content-space-between {
66 -webkit-align-content: space-between; 66 -webkit-align-content: space-between;
67 align-content: space-between; 67 align-content: space-between;
68 } 68 }
69 .align-content-space-around { 69 .align-content-space-around {
70 -webkit-align-content: space-around; 70 -webkit-align-content: space-around;
71 align-content: space-around; 71 align-content: space-around;
72 } 72 }
73 .align-content-space-around {
74 -webkit-align-content: space-evenly;
75 align-content: space-evenly;
76 }
73 .align-content-stretch { 77 .align-content-stretch {
74 -webkit-align-content: stretch; 78 -webkit-align-content: stretch;
75 align-content: stretch; 79 align-content: stretch;
76 } 80 }
77 81
78 .align-items-flex-start { 82 .align-items-flex-start {
79 -webkit-align-items: flex-start; 83 -webkit-align-items: flex-start;
80 align-items: flex-start; 84 align-items: flex-start;
81 } 85 }
82 .align-items-flex-end { 86 .align-items-flex-end {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 justify-content: center; 138 justify-content: center;
135 } 139 }
136 .justify-content-space-between { 140 .justify-content-space-between {
137 -webkit-justify-content: space-between; 141 -webkit-justify-content: space-between;
138 justify-content: space-between; 142 justify-content: space-between;
139 } 143 }
140 .justify-content-space-around { 144 .justify-content-space-around {
141 -webkit-justify-content: space-around; 145 -webkit-justify-content: space-around;
142 justify-content: space-around; 146 justify-content: space-around;
143 } 147 }
148 .justify-content-space-around {
149 -webkit-justify-content: space-evenly;
150 justify-content: space-evenly;
151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698