1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,62 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/publicdomain/zero/1.0/ --> 1.7 +<html> 1.8 + <head> 1.9 + <style> 1.10 + .multicol { 1.11 + height: 10px; 1.12 + width: 100px; 1.13 + -moz-column-width: 20px; 1.14 + -moz-column-fill: auto; 1.15 + border: 2px solid orange; 1.16 + margin-bottom: 15px; /* (just for spacing between testcases) */ 1.17 + } 1.18 + .flexContainer { 1.19 + background: teal; 1.20 + border: 1px dashed black; 1.21 + } 1.22 + .item { 1.23 + display: block; 1.24 + width: 100%; 1.25 + height: 20px; 1.26 + } 1.27 + </style> 1.28 + </head> 1.29 + <body> 1.30 + <!-- auto-height container: --> 1.31 + <div class="multicol"> 1.32 + <div class="flexContainer"> 1.33 + <img src="" class="item"> 1.34 + </div> 1.35 + </div> 1.36 + 1.37 + <!-- fixed-height container, smaller than available height: --> 1.38 + <div class="multicol"> 1.39 + <div class="flexContainer" style="height: 8px"> 1.40 + <img src="" class="item"> 1.41 + </div> 1.42 + </div> 1.43 + 1.44 + <!-- fixed-height container, between available height and child height: --> 1.45 + <div class="multicol"> 1.46 + <div class="flexContainer" style="height: 15px"> 1.47 + <img src="" class="item"> 1.48 + </div> 1.49 + </div> 1.50 + 1.51 + <!-- fixed-height container, same as child height: --> 1.52 + <div class="multicol"> 1.53 + <div class="flexContainer" style="height: 20px"> 1.54 + <img src="" class="item"> 1.55 + </div> 1.56 + </div> 1.57 + 1.58 + <!-- fixed-height container, larger than child height: --> 1.59 + <div class="multicol"> 1.60 + <div class="flexContainer" style="height: 24px"> 1.61 + <img src="" class="item"> 1.62 + </div> 1.63 + </div> 1.64 + </body> 1.65 +</html>