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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/imported/flexbox_direction-row-reverse.html

Issue 1420283011: [css-flexbox] Make min-size:auto work correctly with an explicit width on the flex item (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/flexbox/imported/flexbox_direction-row-reverse-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>flexbox | flex-direction: row-reverse</title>
3 <link rel="author" href="http://opera.com" title="Opera Software">
4 <link rel="help"
5 href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property">
6 <link rel="match" href="flexbox_direction-row-reverse-ref.html">
7 <style>
8 * {font-family: monospace;}
9 body {
10 width: 10em;
11 }
12 ul {
13 background: blue;
14 padding: 0;
15 margin: 0;
16 list-style: none;
17
18 display: flex;
19 flex-direction: row-reverse;
20 }
21 li {
22 color: white;
23 margin: 0;
24 width: 10em;
25 }
26 </style>
27
28 <ul>
29 <li>IJKL</li>
30 <li>ABCD</li>
31 <li>EFGH</li>
32 </ul>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/flexbox/imported/flexbox_direction-row-reverse-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698