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

Side by Side Diff: LayoutTests/css3/flexbox/flex-flow-auto-margins-no-available-space.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 .container { 5 .container {
6 position: relative; 6 position: relative;
7 background-color: pink; 7 background-color: pink;
8 outline: 1px solid black; 8 outline: 1px solid black;
9 display: inline-block; 9 display: inline-block;
10 } 10 }
11 .flexbox { 11 .flexbox {
12 background-color: grey; 12 background-color: grey;
13 width: 100px; 13 width: 100px;
14 height: 100px; 14 height: 100px;
15 margin: 20px; 15 margin: 20px;
16 } 16 }
17 .flexbox > * { 17 .flexbox > * {
18 -webkit-flex: none; 18 flex: none;
19 -moz-flex: none;
20 } 19 }
21 .flexbox > :nth-child(1) { 20 .flexbox > :nth-child(1) {
22 background-color: blue; 21 background-color: blue;
23 margin: auto; 22 margin: auto;
24 } 23 }
25 </style> 24 </style>
26 <script src="../../resources/check-layout.js"></script> 25 <script src="../../resources/check-layout.js"></script>
27 <body onload="checkLayout('.flexbox')"> 26 <body onload="checkLayout('.flexbox')">
28 27
29 <div class="container"> 28 <div class="container">
(...skipping 14 matching lines...) Expand all
44 </div> 43 </div>
45 </div> 44 </div>
46 45
47 <div class="container"> 46 <div class="container">
48 <div class="flexbox column-reverse"> 47 <div class="flexbox column-reverse">
49 <div data-offset-x=20 data-offset-y=60 style="width: 120px; height: 20px"></ div> 48 <div data-offset-x=20 data-offset-y=60 style="width: 120px; height: 20px"></ div>
50 </div> 49 </div>
51 </div> 50 </div>
52 </body> 51 </body>
53 </html> 52 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flex-flow-auto-margins.html ('k') | LayoutTests/css3/flexbox/flex-flow-border.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698