1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/multicol3/moz-multicol3-column-balancing-break-inside-avoid-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html><head> 1.6 + <title>CSS Test: Balancing Overflow, page-break-inside:avoid</title> 1.7 + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012"> 1.8 + <meta name="flags" content="paged"> 1.9 + <meta charset="utf-8"> 1.10 + <style type="text/css"> 1.11 +@page { size:5in 3in; margin:0.5in; } 1.12 + 1.13 + html,body { 1.14 + color:black; background-color:white; font-size:16px; padding:0; margin:0; 1.15 + } 1.16 + 1.17 + .colset { 1.18 + -moz-column-count: 3; 1.19 + -moz-column-gap: 0; 1.20 + border: solid silver; 1.21 + width: 9em; 1.22 + } 1.23 + p { margin: 0; } 1.24 + .short { height: 5px; } 1.25 + .short p { } 1.26 + 1.27 + </style> 1.28 +</head> 1.29 +<body> 1.30 + 1.31 +<div class="colset"> 1.32 +<p>one<br> </p> 1.33 +<p>two three</p> 1.34 +<p>four five</p> 1.35 +</div> 1.36 + 1.37 +<div class="colset"> 1.38 + <p>one two three four five</p> 1.39 +</div> 1.40 + 1.41 +<div class="colset"> 1.42 +one two three four five 1.43 +</div> 1.44 + 1.45 +<div class="colset"> 1.46 + <div class="short"><p>one two three four five</p></div> 1.47 +</div> 1.48 + 1.49 +</body> 1.50 +</html>