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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/flexitem-stretch-image.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <style> 3 <style>
4 .flexbox { 4 .flexbox {
5 width: 600px; 5 width: 600px;
6 display: flex; 6 display: flex;
7 background-color: #aaa; 7 background-color: #aaa;
8 position: relative; 8 position: relative;
9 min-height: 10px; 9 min-height: 10px;
10 } 10 }
11 .flexbox > * { 11 .flexbox > * {
12 margin: 0; 12 margin: 0;
13 border: 0; 13 border: 0;
14 padding: 0; 14 padding: 0;
15 min-width: 0; 15 min-width: 0;
16 } 16 }
17 </style> 17 </style>
18 <script src="../../resources/testharness.js"></script> 18 <script src="../../resources/testharness.js"></script>
19 <script src="../../resources/testharnessreport.js"></script> 19 <script src="../../resources/testharnessreport.js"></script>
20 <script src="../../resources/check-layout-th.js"></script> 20 <script src="../../resources/check-layout-th.js"></script>
21 <body onload="checkLayout('.flexbox')"> 21 <body onload="checkLayout('.flexbox')">
22 <div id=log></div> 22 <div id=log></div>
23 23
24 <div class="flexbox"> 24 <div class="flexbox">
25 <img data-expected-display="block" data-expected-width="345" style="flex: 1 0 auto;" src="../images/resources/blue-100.png"> 25 <img data-expected-display="block" data-expected-width="345" style="flex: 1 0 auto;" src="../../images/resources/blue-100.png">
26 <img data-expected-display="block" data-expected-width="255" data-expected-hei ght="100" style="flex: 1 0 auto;" src="../images/resources/green-10.png"> 26 <img data-expected-display="block" data-expected-width="255" data-expected-hei ght="100" style="flex: 1 0 auto;" src="../../images/resources/green-10.png">
27 </div> 27 </div>
28 28
29 </body> 29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698