1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/412607-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +<html> 1.5 +<head> 1.6 +<style> 1.7 + div.wrapper { 1.8 + width: 80px; 1.9 + height: 30px; 1.10 + } 1.11 + div.a, div.b { 1.12 + height: 20px; 1.13 + display: inline-block; 1.14 + } 1.15 + div.a { 1.16 + width: 20px; 1.17 + background: blue; 1.18 + } 1.19 + div.b { 1.20 + width: 80px; 1.21 + background: green; 1.22 + } 1.23 +</style> 1.24 +</head> 1.25 +<body> 1.26 + <div class="wrapper"> 1.27 + <div class="a"></div> <div class="b"></div> 1.28 + </div> 1.29 +</body> 1.30 +</html>