1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/379349-3a.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,63 @@ 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>CSS 2.1 Test Suite: Overflow Pagination (Multiple)</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 + .container { 1.13 + height: 24pt; 1.14 + /* background: red; See bug 380013 for why this is commented out */ 1.15 + } 1.16 + .overflow { 1.17 + border: solid 2pt silver; 1.18 + height: 25in; 1.19 + border-bottom: 4pt solid red; 1.20 + } 1.21 + #following { 1.22 + margin: -1in 0; 1.23 + height: 72pt; 1.24 + border: 2pt black; 1.25 + border-style: none solid; 1.26 + background: white; 1.27 + font-size: 10pt; 1.28 + line-height: 10pt; 1.29 + text-align: center; 1.30 + color: blue; 1.31 + } 1.32 + .no2 .overflow { 1.33 + height: 24.66667in; 1.34 + } 1.35 + .no3 .overflow { 1.36 + height: 24.33333in; 1.37 + border-bottom-color: blue; 1.38 + } 1.39 + .fill { 1.40 + height: 75in; 1.41 + } 1.42 + </style> 1.43 + </head> 1.44 + <body> 1.45 + <div class="container no1"> 1.46 + <div class="overflow"> 1.47 + </div> 1.48 + </div> 1.49 + <div class="container no2"> 1.50 + <div class="overflow"> 1.51 + </div> 1.52 + </div> 1.53 + <div class="container no3"> 1.54 + <div class="overflow"> 1.55 + </div> 1.56 + </div> 1.57 + <p id="following"> 1.58 + This paragraph must be on the first page in paged media. 1.59 + There must be no red on any page. There must be a blue line 1.60 + on a page <em>after</em> the first (assuming the page area 1.61 + is shorter than 25 inches). 1.62 + </p> 1.63 + <div class="fill"> 1.64 + </div> 1.65 + </body> 1.66 +</html>