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

Side by Side Diff: LayoutTests/css3/flexbox/flex-item-child-overflow.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 <style> 3 <style>
4 body { 4 body {
5 margin: 0; 5 margin: 0;
6 } 6 }
7 .flexbox { 7 .flexbox {
8 display: -webkit-flex; 8 display: flex;
9 position: relative; 9 position: relative;
10 -webkit-flex-flow: column; 10 flex-flow: column;
11 } 11 }
12 .flexbox > div { 12 .flexbox > div {
13 height: 0; 13 height: 0;
14 } 14 }
15 .flexbox > div > div { 15 .flexbox > div > div {
16 width: 20px; 16 width: 20px;
17 height: 20px; 17 height: 20px;
18 line-height: 0px; 18 line-height: 0px;
19 background-color: blue; 19 background-color: blue;
20 } 20 }
21 </style> 21 </style>
22 <script src="../../resources/check-layout.js"></script> 22 <script src="../../resources/check-layout.js"></script>
23 <body onload="checkLayout('.flexbox')"> 23 <body onload="checkLayout('.flexbox')">
24 24
25 <div data-expected-height=0 data-offset-x=0 data-offset-y=0 class="flexbox"> 25 <div data-expected-height=0 data-offset-x=0 data-offset-y=0 class="flexbox">
26 <div data-expected-height=0 data-offset-x=0 data-offset-y=0> 26 <div data-expected-height=0 data-offset-x=0 data-offset-y=0>
27 <div data-expected-height=20 data-offset-x=0 data-offset-y=0></div> 27 <div data-expected-height=20 data-offset-x=0 data-offset-y=0></div>
28 </div> 28 </div>
29 </div> 29 </div>
30 30
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flex-flow-padding.html ('k') | LayoutTests/css3/flexbox/flex-justify-content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698