layout/reftests/bugs/379349-2-ref.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/379349-2-ref.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">
     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 +
    1.17 +    .following {
    1.18 +      margin: 0 0 .5in;
    1.19 +      height: .5in;
    1.20 +      background: white;
    1.21 +
    1.22 +      font-size: 10pt;
    1.23 +      line-height: 10pt;
    1.24 +      color: navy;
    1.25 +    }
    1.26 +    .fno1 {
    1.27 +      position: absolute;
    1.28 +      top: 1.5in; left: 0;
    1.29 +      width: 100pt;
    1.30 +      border-top: 4px solid blue;
    1.31 +    }
    1.32 +    .fno2 {
    1.33 +      position: absolute;
    1.34 +      top: .5in; left: 100pt;
    1.35 +      width: 100pt;
    1.36 +    }
    1.37 +    .overflow {
    1.38 +      height: 4in;
    1.39 +      width: 200pt;
    1.40 +      border-bottom: 4px solid blue;
    1.41 +    }
    1.42 +    body {
    1.43 +      height: 2.5in;
    1.44 +      width: 300pt;
    1.45 +      -moz-column-width: 100pt;
    1.46 +      -moz-column-gap: 0;
    1.47 +      -moz-column-fill: auto;
    1.48 +      border: solid gray;
    1.49 +      position: relative;
    1.50 +    }
    1.51 +  </style>
    1.52 + </head>
    1.53 + <body>
    1.54 +  <div class="overflow">
    1.55 +  </div>
    1.56 +  <div class="following fno1">
    1.57 +    This paragraph must be in the first column.
    1.58 +    There must be no red on any page.
    1.59 +  </div>
    1.60 +  <p class="following fno2">
    1.61 +    This paragraph must be in the second column.
    1.62 +    There must be an unbroken blue line across
    1.63 +    all three columns.
    1.64 +  </p>
    1.65 + </body>
    1.66 +</html>

mercurial