1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/860242-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <meta charset="utf-8"> 1.8 + <style> 1.9 + .table { 1.10 + display: table; 1.11 + width: 100px; 1.12 + table-layout: fixed; 1.13 + margin-bottom: 2px; 1.14 + } 1.15 + 1.16 + .table > * { 1.17 + box-sizing: border-box; 1.18 + display: table-cell; 1.19 + height: 30px; 1.20 + } 1.21 + 1.22 + .withBorder { border: 2px solid black; } 1.23 + 1.24 + .thin { width: 25px; } 1.25 + .wide { width: 75px; } 1.26 + 1.27 + .teal { background: teal; } 1.28 + .purple { background: purple; } 1.29 + </style> 1.30 + </head> 1.31 + <body> 1.32 + <div class="table"> 1.33 + <div class="thin teal"></div> 1.34 + <div class="wide purple"></div> 1.35 + </div> 1.36 + <div class="table"> 1.37 + <div class="thin teal"></div> 1.38 + <div class="wide purple"></div> 1.39 + </div> 1.40 + <div class="table"> 1.41 + <div class="thin withBorder teal"></div> 1.42 + <div class="wide withBorder purple"></div> 1.43 + </div> 1.44 + <div class="table"> 1.45 + <div class="thin withBorder teal"></div> 1.46 + <div class="wide withBorder purple"></div> 1.47 + </div> 1.48 + </body> 1.49 +</html>