layout/reftests/columns/columnrule-overflow.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/columns/columnrule-overflow.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html>
     1.6 +  <head>
     1.7 +    <title>Bug 746015: Off-screen overflow column rules are not properly drawn.</title>
     1.8 +    <style type="text/css">
     1.9 +    * {
    1.10 +    	margin: 0 0;
    1.11 +    	padding: 0 0;
    1.12 +    }
    1.13 +
    1.14 +    body,html {
    1.15 +        padding: 0 0;
    1.16 +        margin: 0 0;
    1.17 +        line-height: 1.0;
    1.18 +    }
    1.19 +
    1.20 +    body {
    1.21 +        position: absolute;
    1.22 +        left: -570px;
    1.23 +    }
    1.24 +
    1.25 +    div.content {
    1.26 +      width: 180px;
    1.27 +      height: 875px;
    1.28 +      background: blue;
    1.29 +    }
    1.30 +
    1.31 +    div.multicolumn {
    1.32 +        height: 175px;
    1.33 +        overflow: visible;
    1.34 +
    1.35 +        -moz-column-width: 180px;
    1.36 +        -moz-column-gap: 10px;
    1.37 +        -moz-column-rule: 10px solid green;
    1.38 +    }
    1.39 +    </style>
    1.40 +  </head>
    1.41 +  <body>
    1.42 +    <div class="multicolumn"><div class="content"></div></div>
    1.43 +  </body>
    1.44 +</html>

mercurial