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

Side by Side Diff: LayoutTests/fast/forms/button-set-display-flex-justifyContent-center-expected.html

Issue 278603002: Centering text inside a button set to display flex with justify-content: center is impossible (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addresses the changes asked in patch set 6 Created 6 years, 7 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
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 div {
6 font-family: sans-serif;
7 font-size: initial;
8 width: 300px;
9 }
10
11 .flex {
12 display: flex;
13 }
14
15 .flex-center {
16 justify-content: center;
17 }
18 </style>
19 </head>
20 <body>
21 <h4>Test for BUG=344733: Centering text inside a button set to display flex and justify-content: center is impossible</h4>
22 <div class="flex flex-center">text with justify-content: center</div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698