1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/abspos-overflow-01-cols.ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,73 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 + <head> 1.7 + <title>Multi-column Layout: AbsPos Pagination (Interlaced)</title> 1.8 + <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> 1.9 + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/> 1.10 + <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/> 1.11 + <style type="text/css"> 1.12 + html { 1.13 + background: white; 1.14 + } 1.15 + 1.16 + .following { 1.17 + margin: 0; 1.18 + font-size: 10pt; 1.19 + line-height: 10pt; 1.20 + font-family: sans-serif; 1.21 + text-align: center; 1.22 + width: 100pt; 1.23 + } 1.24 + #colset { 1.25 + width: 300pt; 1.26 + height: 2in; 1.27 + border: silver 2pt; 1.28 + border-style: none solid; 1.29 + } 1.30 + #redline { 1.31 + width: 303pt; 1.32 + border-top: 4px solid lime; 1.33 + margin-top: -1in; 1.34 + position: relative; 1.35 + z-index: -1; 1.36 + } 1.37 + </style> 1.38 + </head> 1.39 + <body> 1.40 + <div id="colset"> 1.41 + <div> 1.42 + <div class="ocontainer"> 1.43 + <div class="overflow o1"></div> 1.44 + </div> 1.45 + <div class="container"> 1.46 + <div class="overflow a1"></div> 1.47 + <div class="overflow a2"></div> 1.48 + <div class="overflow a3"></div> 1.49 + <div class="overflow a4"></div> 1.50 + </div> 1.51 + <div class="container"> 1.52 + <div class="overflow b1"></div> 1.53 + <div class="overflow b2"></div> 1.54 + <div class="overflow b3"></div> 1.55 + <div class="overflow b4"> 1.56 + <div class="overflow child1"></div> 1.57 + <div class="overflow child2"></div> 1.58 + </div> 1.59 + <div class="overflow b5"></div> 1.60 + <div class="overflow b6"></div> 1.61 + </div> 1.62 + </div> 1.63 + <p class="following f1"> 1.64 + There must be a single green line and no red. 1.65 + </p> 1.66 + <div class="container"> 1.67 + <div class="overflow c1"></div> 1.68 + <div class="overflow c2"></div> 1.69 + <div class="overflow c3"></div> 1.70 + <div class="overflow c4"></div> 1.71 + </div> 1.72 + <div class="following f2"></div> 1.73 + </div> 1.74 + <div id="redline"></div> 1.75 + </body> 1.76 +</html>