1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/float-clear-000-print.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 1.5 +<html class="reftest-print"> 1.6 +<style type="text/css"> 1.7 +html, body { 1.8 + margin: 0; 1.9 + padding: 0; 1.10 + height: 100%; 1.11 +} 1.12 + 1.13 +.float { 1.14 + float: right; 1.15 + width: 15px; 1.16 + background: aqua; 1.17 + height: 5in; 1.18 +} 1.19 +.L { 1.20 + float: left; 1.21 +} 1.22 + 1.23 +.container { 1.24 + width: 100%; 1.25 + background: red; 1.26 +} 1.27 + 1.28 +.clear { 1.29 + border-bottom: solid orange; 1.30 +} 1.31 +</style> 1.32 + 1.33 +<div class="container"> 1.34 + <div class="float L"></div> 1.35 + <div class="float R"></div> 1.36 +</div> 1.37 +<div class="clear"> 1.38 + <br clear="all"> 1.39 +</div>