1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/abspos-overflow-01.ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 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" class="reftest-print"> 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 + /* If the reftest print size change, this needs to change too. */ 1.13 + html, body, p { 1.14 + margin: 0; 1.15 + padding: 0; 1.16 + } 1.17 + 1.18 + .box { 1.19 + font-size: 10pt; 1.20 + line-height: 10pt; 1.21 + font-family: sans-serif; 1.22 + text-align: center; 1.23 + position: relative; 1.24 + border-bottom: lime 4px solid; 1.25 + margin-top: -4px; 1.26 + height: 2in; 1.27 + } 1.28 + #pageset { 1.29 + width: 100pt; 1.30 + border: silver 2pt; 1.31 + border-style: none solid; 1.32 + height: 6in; 1.33 + } 1.34 + 1.35 + .n1 { 1.36 + margin: 0; 1.37 + height: 1in; 1.38 + } 1.39 + </style> 1.40 + </head> 1.41 + <body> 1.42 + <div id="pageset"> 1.43 + <p class="box n1"> 1.44 + There must be 3 pages, a single green line on each page, and no red. 1.45 + </p> 1.46 + <p class="box"></p> 1.47 + <p class="box"></p> 1.48 + </div> 1.49 + </body> 1.50 +</html>