1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/float-clear-003-print.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 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 +.step { 1.14 + height: 1in; 1.15 + border: 15px aqua; 1.16 + border-style: none solid; 1.17 +} 1.18 +.float { 1.19 + float: right; 1.20 + width: 15px; 1.21 + background: aqua; 1.22 + height: 4in; 1.23 +} 1.24 +.L { 1.25 + float: left; 1.26 +} 1.27 + 1.28 +.container { 1.29 + width: 100%; 1.30 + background: red; 1.31 +} 1.32 + 1.33 +.clear { 1.34 + clear: left; 1.35 + height: 0; 1.36 + background: red; 1.37 +} 1.38 +.bar { 1.39 + border-bottom: orange solid; 1.40 +} 1.41 +</style> 1.42 + 1.43 +<div class="step"></div> 1.44 +<div class="container"> 1.45 + <div class="float L"></div> 1.46 + <div class="float R"></div> 1.47 +</div> 1.48 +<div class="clear"><div class="bar"></div></div>