1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-box-sizing-on-container-horiz-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 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: 100px; 1.16 + height: 20px; 1.17 + border: 5px solid black; 1.18 + } 1.19 + .container > * { 1.20 + height: 18px; 1.21 + float: left; 1.22 + } 1.23 + .itemA { 1.24 + width: 38px; 1.25 + background: purple; 1.26 + border: 1px solid indigo; 1.27 + } 1.28 + .itemB { 1.29 + width: 58px; 1.30 + background: teal; 1.31 + border: 1px solid lightblue; 1.32 + } 1.33 + </style> 1.34 +</head> 1.35 +<body> 1.36 + <div class="container"> 1.37 + <div class="itemA"></div> 1.38 + <div class="itemB"></div> 1.39 + </div> 1.40 +</body> 1.41 +</html>