layout/reftests/bugs/379349-1a.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/379349-1a.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,50 @@
     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 (Basic)</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 +  <style type="text/css">
    1.11 +    #container {
    1.12 +      height: 72pt;
    1.13 +      background: red;
    1.14 +    }
    1.15 +    #overflow {
    1.16 +      height: 5in;
    1.17 +      border: 2pt silver solid;
    1.18 +      border-top: none;
    1.19 +      border-bottom: solid 10px blue;
    1.20 +    }
    1.21 +    #following {
    1.22 +      margin: -72pt 0;
    1.23 +      height: 72pt;
    1.24 +      background: white;
    1.25 +      border: 2pt black;
    1.26 +      border-style: none solid;
    1.27 +
    1.28 +      font-size: 10pt;
    1.29 +      line-height: 10pt;
    1.30 +      color: blue;
    1.31 +    }
    1.32 +    body {
    1.33 +      height: 2in;
    1.34 +      width: 300pt;
    1.35 +      -moz-column-width: 100pt;
    1.36 +      -moz-column-gap: 0;
    1.37 +      border: solid gray;
    1.38 +    }
    1.39 +  </style>
    1.40 + </head>
    1.41 + <body>
    1.42 +  <div id="container">
    1.43 +    <div id="overflow">
    1.44 +    </div>
    1.45 +  </div>
    1.46 +  <p id="following">
    1.47 +    This paragraph must be in the first column.
    1.48 +    There must be no red. There must be a blue
    1.49 +    horizontal line in middle of the third
    1.50 +    column.
    1.51 +  </p>
    1.52 + </body>
    1.53 +</html>

mercurial