1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/border-breaking-002-cols.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 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: 0; 1.11 + border-bottom: 10px solid blue; 1.12 + } 1.13 + .overflow { 1.14 + height: 195px; 1.15 + border-bottom: solid 10px aqua; 1.16 + } 1.17 + 1.18 + .multicol { 1.19 + height: 200px; 1.20 + width: 300px; 1.21 + -moz-column-width: 150px; 1.22 + -moz-column-gap: 0; 1.23 + -moz-column-fill: auto; 1.24 + border: solid silver; 1.25 + } 1.26 + </style> 1.27 + </head> 1.28 + <body> 1.29 + There must be a continuous 10px line at the top 1.30 + of the gray box, the left half blue and the right 1.31 + half aqua. 1.32 + <div class="multicol"> 1.33 + <div class="container"> 1.34 + <div class="overflow"> 1.35 + </div> 1.36 + </div> 1.37 + </div> 1.38 + </body> 1.39 +</html>