layout/reftests/pagination/border-breaking-003-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-003-cols.ref.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     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 +    .container1 {
    1.10 +      border-top: 10px solid blue;
    1.11 +    }
    1.12 +    .container2 {
    1.13 +      border-top: solid 10px aqua;
    1.14 +    }
    1.15 +
    1.16 +    .multicol {
    1.17 +      height: 200px;
    1.18 +      width: 300px;
    1.19 +      border: solid silver;
    1.20 +    }
    1.21 +  </style>
    1.22 + </head>
    1.23 + <body>
    1.24 +  There must be two continuous 10px lines at the top
    1.25 +  of the gray box, the top one blue and the bottom one
    1.26 +  aqua.
    1.27 +  <div class="multicol">
    1.28 +    <div class="container1">
    1.29 +    </div>
    1.30 +    <div class="container2">
    1.31 +    </div>
    1.32 +  </div>
    1.33 + </body>
    1.34 +</html>

mercurial