1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/float-clear-002-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 + height: 2in; 1.26 +} 1.27 + 1.28 +.clear { 1.29 + clear: left; 1.30 + border-bottom: solid orange; 1.31 + background: red; 1.32 +} 1.33 +</style> 1.34 + 1.35 +<div class="container"> 1.36 + <div class="float L"></div> 1.37 + <div class="float R"></div> 1.38 +</div> 1.39 +<div class="clear"></div>