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