layout/reftests/columns/columnrule-overflow-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/columns/columnrule-overflow-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,49 @@
     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 +    div.column1 {
    1.21 +      display: inline-block;
    1.22 +      width: 180px;
    1.23 +      height: 175px;
    1.24 +      vertical-align: top;
    1.25 +      white-space: no-wrap;
    1.26 +    }
    1.27 +
    1.28 +    div.content {
    1.29 +      width: 180px;
    1.30 +      height: 175px;
    1.31 +      background: blue;
    1.32 +    }
    1.33 +
    1.34 +    div.column2 {
    1.35 +    	display: inline-block;
    1.36 +    	width: 180px;
    1.37 +    	height: 175px;
    1.38 +    	vertical-align: top;
    1.39 +    }
    1.40 +
    1.41 +    div.colgap {
    1.42 +    	display: inline-block;
    1.43 +    	background-color: green;
    1.44 +    	width: 10px;
    1.45 +    	height: 175px;
    1.46 +    }
    1.47 +    </style>
    1.48 +  </head>
    1.49 +  <body>
    1.50 +      <div class="column1"><div class="content"></div></div><div class="colgap"></div><div class="column2"><div class="content"></div></div>
    1.51 +  </body>
    1.52 +</html>

mercurial