mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
22aae2c243
--HG-- rename : layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1a.html => layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1a-wrap.html rename : layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1b.html => layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1b-wrap.html rename : layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1c.html => layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1c-wrap.html rename : layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1d.html => layout/reftests/flexbox/pagination/flexbox-unbreakable-child-1d-wrap.html rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-item-horiz-1-ref.html => layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-line-horiz-1-ref.html rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-item-horiz-1.html => layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-line-horiz-1.html rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-item-horiz-1-ref.html => layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-line-horiz-2-ref.html rename : layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-item-horiz-1.html => layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-multi-line-horiz-2.html
70 lines
1.8 KiB
HTML
70 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<!-- Testcase for how we fragment a flex container with a single unbreakable
|
|
child, with the flex container having "flex-direction: column" and
|
|
"flex-wrap: wrap".
|
|
-->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.multicol {
|
|
height: 10px;
|
|
width: 100px;
|
|
-moz-column-width: 20px;
|
|
-moz-column-fill: auto;
|
|
border: 2px solid orange;
|
|
margin-bottom: 15px; /* (just for spacing between testcases) */
|
|
}
|
|
.flexContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
background: teal;
|
|
border: 1px dashed black;
|
|
}
|
|
.item {
|
|
width: 100%;
|
|
height: 20px;
|
|
flex: none;
|
|
}
|
|
</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>
|
|
|
|
<!-- fixed-height container, same as child height: -->
|
|
<div class="multicol">
|
|
<div class="flexContainer" style="height: 20px">
|
|
<img src="" class="item">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- fixed-height container, larger than child height: -->
|
|
<div class="multicol">
|
|
<div class="flexContainer" style="height: 24px">
|
|
<img src="" class="item">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|