1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/329359-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 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; padding: 0; 1.18 + border: none; 1.19 + height: 5em; 1.20 + background-color: green; 1.21 +} 1.22 +#plus-margin { 1.23 + margin: 0 100px 0; 1.24 +} 1.25 +</style> 1.26 +</head> 1.27 +<body> 1.28 +<div class="float-left"></div> 1.29 +<div class="float-right"></div> 1.30 +<fieldset></fieldset> 1.31 +<div class="float-left"></div> 1.32 +<div class="float-right"></div> 1.33 +<fieldset id="plus-margin"></fieldset> 1.34 +</body> 1.35 +</html>