layout/reftests/pagination/border-breaking-000-cols.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/pagination/border-breaking-000-cols.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,42 @@
     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>Pagination with Borders</title>
     1.8 +  <style type="text/css">
     1.9 +    .container {
    1.10 +      padding-bottom: 10px;
    1.11 +      border-bottom: 10px solid transparent;
    1.12 +    }
    1.13 +
    1.14 +    .box {
    1.15 +      background: green;
    1.16 +    }
    1.17 +    p {
    1.18 +      font-size: 150px;
    1.19 +      line-height: 1;
    1.20 +      margin: 0;
    1.21 +    }
    1.22 +    p + p {
    1.23 +      height: 200px;
    1.24 +    }
    1.25 +
    1.26 +    body {
    1.27 +      height: 200px;
    1.28 +      width: 300px;
    1.29 +      -moz-column-width: 150px;
    1.30 +      -moz-column-gap: 0;
    1.31 +      -moz-column-fill: auto;
    1.32 +      border: solid silver;
    1.33 +      border-style: none solid;
    1.34 +    }
    1.35 +  </style>
    1.36 + </head>
    1.37 + <body>
    1.38 +  <div class="container">
    1.39 +    <div class="box">
    1.40 +      <p>&nbsp;</p>
    1.41 +      <p>&nbsp;</p>
    1.42 +    </div>
    1.43 +  </div>
    1.44 + </body>
    1.45 +</html>

mercurial