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