layout/reftests/bugs/379349-3b.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/379349-3b.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,65 @@
     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 +      border-bottom-color: blue;
    1.35 +    }
    1.36 +    .no3 .overflow {
    1.37 +      height: 24.33333in;
    1.38 +      position: relative;
    1.39 +      z-index: -1;
    1.40 +    }
    1.41 +    .fill {
    1.42 +      height: 75in;
    1.43 +    }
    1.44 +  </style>
    1.45 + </head>
    1.46 + <body>
    1.47 +  <div class="container no1">
    1.48 +    <div class="overflow">
    1.49 +    </div>
    1.50 +  </div>
    1.51 +  <div class="container no2">
    1.52 +    <div class="overflow">
    1.53 +    </div>
    1.54 +  </div>
    1.55 +  <div class="container no3">
    1.56 +    <div class="overflow">
    1.57 +    </div>
    1.58 +  </div>
    1.59 +  <p id="following">
    1.60 +    This paragraph must be on the first page in paged media.
    1.61 +    There must be no red on any page. There must be a blue line
    1.62 +    on a page <em>after</em> the first (assuming the page area
    1.63 +    is shorter than 25 inches).
    1.64 +  </p>
    1.65 +  <div class="fill">
    1.66 +  </div>
    1.67 + </body>
    1.68 +</html>

mercurial