1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/columns/column-balancing-nested-000.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/licenses/publicdomain/ 1.7 +--> 1.8 +<!DOCTYPE html> 1.9 +<html lang="en-US"> 1.10 +<head> 1.11 + <title>Testing nested balancing column sets</title> 1.12 + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=822053"> 1.13 +<style type="text/css"> 1.14 + html,body { 1.15 + color:black; background-color:white; font-size:16px; padding:0; margin:0; 1.16 + } 1.17 + 1.18 + .colset { 1.19 + -moz-column-count: 2; 1.20 + -moz-column-gap: 1px; 1.21 + -moz-column-rule: 1px solid black; 1.22 + border: solid silver; 1.23 + margin-bottom:1em; 1.24 + width:30ch; 1.25 + } 1.26 + p { margin: 0; } 1.27 +</style> 1.28 +</head> 1.29 +<body> 1.30 +<div class="colset"> 1.31 + <p>one one one one one</p> 1.32 + <div class="colset"> 1.33 + <p>two two two two two</p> 1.34 + </div> 1.35 +</div> 1.36 +<div class="colset"> 1.37 + <p>one one one one one</p> 1.38 + <div class="colset"> 1.39 + <p>two two two two two</p> 1.40 + <div class="colset"> 1.41 + <p>three three three three three</p> 1.42 + </div> 1.43 + </div> 1.44 +</div> 1.45 +<div class="colset"> 1.46 + <p>one one one one one</p> 1.47 + <div class="colset"> 1.48 + <p>two two two two two</p> 1.49 + <div class="colset"> 1.50 + <p>three three</p> 1.51 + <div class="colset"> 1.52 + <p>four four four four four</p> 1.53 + </div> 1.54 + </div> 1.55 + </div> 1.56 +</div> 1.57 +</body> 1.58 +</html>