1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-box-sizing-on-items-vert-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,57 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/publicdomain/zero/1.0/ 1.8 +--> 1.9 +<html> 1.10 +<head> 1.11 + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 1.12 + <meta charset="utf-8"> 1.13 + <style> 1.14 + .container { 1.15 + width: 30px; 1.16 + height: 100px; 1.17 + border: 1px solid black; 1.18 + float: left; 1.19 + margin: 2px; 1.20 + } 1.21 + .itemA { 1.22 + width: 22px; 1.23 + height: 22px; 1.24 + background: purple; 1.25 + border: 4px solid indigo; 1.26 + } 1.27 + .itemB { 1.28 + width: 20px; 1.29 + height: 40px; 1.30 + background: teal; 1.31 + border: 5px solid lightblue; 1.32 + } 1.33 + </style> 1.34 +</head> 1.35 +<body> 1.36 + <!-- FIRST ROW --> 1.37 + <!-- 1 inflexible item --> 1.38 + <div class="container"> 1.39 + <div class="itemA"></div> 1.40 + </div> 1.41 + <!-- 1 flexible item --> 1.42 + <div class="container"> 1.43 + <div class="itemA" style="height: 92px"></div> 1.44 + </div> 1.45 + 1.46 + <div style="clear: both"></div> 1.47 + 1.48 + <!-- SECOND ROW --> 1.49 + <!-- 2 inflexible items --> 1.50 + <div class="container"> 1.51 + <div class="itemA"></div> 1.52 + <div class="itemB"></div> 1.53 + </div> 1.54 + <!-- 2 flexible items --> 1.55 + <div class="container"> 1.56 + <div class="itemA" style="height: 32px"></div> 1.57 + <div class="itemB" style="height: 50px"></div> 1.58 + </div> 1.59 +</body> 1.60 +</html>