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

Side by Side Diff: LayoutTests/css3/flexbox/flex-align-max.html

Issue 1088633002: Unprefix flexbox tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: whoops, a > went missing Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <link href="resources/flexbox.css" rel="stylesheet"> 3 <link href="resources/flexbox.css" rel="stylesheet">
4 <style> 4 <style>
5 body { 5 body {
6 margin: 0; 6 margin: 0;
7 } 7 }
8 .flexbox { 8 .flexbox {
9 background-color: #aaa; 9 background-color: #aaa;
10 position: relative; 10 position: relative;
(...skipping 11 matching lines...) Expand all
22 background-color: green; 22 background-color: green;
23 } 23 }
24 .flexbox :nth-child(3) { 24 .flexbox :nth-child(3) {
25 background-color: red; 25 background-color: red;
26 } 26 }
27 </style> 27 </style>
28 <script src="../../resources/check-layout.js"></script> 28 <script src="../../resources/check-layout.js"></script>
29 <body onload="checkLayout('.flexbox')"> 29 <body onload="checkLayout('.flexbox')">
30 30
31 <div class="flexbox"> 31 <div class="flexbox">
32 <div data-expected-height="50" style="-webkit-flex: 1 0 0; max-height: 100px"> </div> 32 <div data-expected-height="50" style="flex: 1 0 0; max-height: 100px"></div>
33 <div data-expected-height="50" style="-webkit-flex: 1 0 0; height: 50px"></div > 33 <div data-expected-height="50" style="flex: 1 0 0; height: 50px"></div>
34 <div data-expected-height="25" style="-webkit-flex: 1 0 0; max-height: 25px">< /div> 34 <div data-expected-height="25" style="flex: 1 0 0; max-height: 25px"></div>
35 </div> 35 </div>
36 36
37 <div class="flexbox column" style="width: 200px"> 37 <div class="flexbox column" style="width: 200px">
38 <div data-expected-width="150" style="-webkit-flex: 1 0 20px; max-width: 150px "></div> 38 <div data-expected-width="150" style="flex: 1 0 20px; max-width: 150px"></div>
39 <div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></ div> 39 <div data-expected-width="100" style="flex: 1 0 20px; width: 100px"></div>
40 <div data-expected-width="200" style="-webkit-flex: 1 0 20px;"></div> 40 <div data-expected-width="200" style="flex: 1 0 20px;"></div>
41 </div> 41 </div>
42 42
43 <div class="flexbox vertical-rl" style="height: 60px"> 43 <div class="flexbox vertical-rl" style="height: 60px">
44 <div data-expected-width="100" style="-webkit-flex: 1 0 20px; max-width: 110px "></div> 44 <div data-expected-width="100" style="flex: 1 0 20px; max-width: 110px"></div>
45 <div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></ div> 45 <div data-expected-width="100" style="flex: 1 0 20px; width: 100px"></div>
46 <div data-expected-width="50" style="-webkit-flex: 1 0 20px; max-width: 50px"> </div> 46 <div data-expected-width="50" style="flex: 1 0 20px; max-width: 50px"></div>
47 </div> 47 </div>
48 48
49 <div class="flexbox column vertical-rl" style="height: 50px"> 49 <div class="flexbox column vertical-rl" style="height: 50px">
50 <div data-expected-height="50" style="-webkit-flex: 1 0 100px; max-height: 100 px"></div> 50 <div data-expected-height="50" style="flex: 1 0 100px; max-height: 100px"></di v>
51 <div data-expected-height="50" style="-webkit-flex: 1 0 100px; height: 50px">< /div> 51 <div data-expected-height="50" style="flex: 1 0 100px; height: 50px"></div>
52 <div data-expected-height="25" style="-webkit-flex: 1 0 100px; max-height: 25p x"></div> 52 <div data-expected-height="25" style="flex: 1 0 100px; max-height: 25px"></div >
53 </div> 53 </div>
54 54
55 </body> 55 </body>
56 </html> 56 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flex-align-column.html ('k') | LayoutTests/css3/flexbox/flex-flow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698