diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/flexbox/pagination/flexbox-unbreakable-child-3-ref.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/layout/reftests/flexbox/pagination/flexbox-unbreakable-child-3-ref.html b/layout/reftests/flexbox/pagination/flexbox-unbreakable-child-3-ref.html new file mode 100644 index 0000000000..e21ddc8d23 --- /dev/null +++ b/layout/reftests/flexbox/pagination/flexbox-unbreakable-child-3-ref.html @@ -0,0 +1,71 @@ +<!DOCTYPE html> +<!-- Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ --> +<html> + <head> + <style> + .multicol { + height: 10px; + width: 100px; + border: 2px solid orange; + margin-bottom: 15px; /* (just for spacing between testcases) */ + position: relative; + } + .flexContainer { + width: 40px; + background: teal; + border: 1px dashed black; + } + .continuation { + position: absolute; + right: 0; + top: 0; + } + .item { + display: block; + width: 100%; + height: 20px; + } + </style> + </head> + <body> + <!-- auto-height container: --> + <div class="multicol"> + <div class="flexContainer"> + <img src="" class="item"> + </div> + </div> + + <!-- fixed-height container, smaller than available height: --> + <div class="multicol"> + <div class="flexContainer" style="height: 8px"> + <img src="" class="item"> + </div> + </div> + + <!-- fixed-height container, between available height and child height: --> + <div class="multicol"> + <div class="flexContainer" style="height: 15px"> + <img src="" class="item"> + </div> + <div class="flexContainer continuation" style="height: 0px"></div> + </div> + </div> + + <!-- fixed-height container, same as child height: --> + <div class="multicol"> + <div class="flexContainer" style="height: 20px"> + <img src="" class="item"> + </div> + <div class="flexContainer continuation" style="height: 0px"></div> + </div> + + <!-- fixed-height container, larger than child height: --> + <div class="multicol"> + <div class="flexContainer" style="height: 20px"> + <img src="" class="item"> + </div> + <div class="flexContainer continuation" style="height: 4px"></div> + </div> + </body> +</html> |