1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/379349-2a.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,85 @@ 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>CSS3 Multi-column Layout Test Suite: Overflow Pagination (Interlaced [Simplified])</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 + body, html { 1.13 + margin: 0; 1.14 + padding: 0; 1.15 + } 1.16 + .container { 1.17 + height: .5in; 1.18 + } 1.19 + .overflow { 1.20 + border-bottom: solid 4px red; 1.21 + } 1.22 + .following { 1.23 + margin: 0 0 .5in; 1.24 + height: .5in; 1.25 + background: white; 1.26 + 1.27 + font-size: 10pt; 1.28 + line-height: 10pt; 1.29 + color: navy; 1.30 + } 1.31 + .fno1 { 1.32 + margin: 0; 1.33 + border-top: 4px solid blue; 1.34 + } 1.35 + .no1 .overflow { 1.36 + height: 800%; 1.37 + } 1.38 + .no2 .overflow { 1.39 + height: 1200%; 1.40 + } 1.41 + .no3 .overflow { 1.42 + height: 600%; 1.43 + border-bottom-color: blue; 1.44 + } 1.45 + .no4 .overflow { 1.46 + height: 800%; 1.47 + border-bottom-color: blue; 1.48 + } 1.49 + body { 1.50 + height: 2.5in; 1.51 + width: 300pt; 1.52 + -moz-column-width: 100pt; 1.53 + -moz-column-gap: 0; 1.54 + -moz-column-fill: auto; 1.55 + border: solid gray; 1.56 + } 1.57 + </style> 1.58 + </head> 1.59 + <body> 1.60 + <div class="container no1"> 1.61 + <div class="overflow"> 1.62 + </div> 1.63 + </div> 1.64 + <div class="container no2"> 1.65 + <div class="overflow"> 1.66 + </div> 1.67 + </div> 1.68 + <div class="container no3"> 1.69 + <div class="overflow"> 1.70 + </div> 1.71 + </div> 1.72 + <div class="following"> 1.73 + <p class="fno1"> 1.74 + This paragraph must be in the first column. 1.75 + There must be no red on any page. 1.76 + </p> 1.77 + </div> 1.78 + <div class="container no4"> 1.79 + <div class="overflow"> 1.80 + </div> 1.81 + </div> 1.82 + <p class="following"> 1.83 + This paragraph must be in the second column. 1.84 + There must be an unbroken blue line across 1.85 + all three columns. 1.86 + </p> 1.87 + </body> 1.88 +</html>