layout/reftests/pagination/border-breaking-001-cols.ref.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/pagination/border-breaking-001-cols.ref.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,38 @@
     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 +      height: 500px;
    1.11 +      background: lime;
    1.12 +      border: 10px green;
    1.13 +      border-style: none solid;
    1.14 +    }
    1.15 +    .long {
    1.16 +      background: aqua;
    1.17 +      width: 40px;
    1.18 +      height: 500px;
    1.19 +    }
    1.20 +
    1.21 +    .body {
    1.22 +      height: 200px;
    1.23 +      width: 300px;
    1.24 +      -moz-column-width: 100px;
    1.25 +      -moz-column-gap: 0;
    1.26 +      -moz-column-fill: auto;
    1.27 +      border: solid silver;
    1.28 +      border-style: none solid;
    1.29 +      background: yellow;
    1.30 +    }
    1.31 +  </style>
    1.32 + </head>
    1.33 + <body>
    1.34 +  <div class="body">
    1.35 +   <div class="container">
    1.36 +     <div class="long">
    1.37 +     </div>
    1.38 +   </div>
    1.39 +  </div>
    1.40 + </body>
    1.41 +</html>

mercurial