1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/329359-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<style type="text/css"> 1.8 +.float-left, .float-right { 1.9 + float: left; 1.10 + width: 125px; height: 1em; 1.11 + background-color: red; 1.12 +} 1.13 +.float-right { 1.14 + float: right; 1.15 +} 1.16 +.fieldset { 1.17 + margin: 0 125px 0; padding: 0; 1.18 + border: none; 1.19 + height: 5em; 1.20 + background-color: green; 1.21 +} 1.22 +</style> 1.23 +</head> 1.24 +<body> 1.25 +<div class="float-left"></div> 1.26 +<div class="float-right"></div> 1.27 +<div class="fieldset"></div> 1.28 +<div class="float-left"></div> 1.29 +<div class="float-right"></div> 1.30 +<div class="fieldset"></div> 1.31 +</body> 1.32 +</html>