1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
<!DOCTYPE html>
<html>
<head>
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#layout-algorithm">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<meta name="assert" content="Tests that the cross size of flexboxes and flex items with % height are computed correctly with various mutations.">
<style>
.flexbox {
display: flex;
font: 10px/1 Ahem;
outline: 1px solid black;
}
.grid {
display: grid;
outline: 1px solid magenta;
}
.flexbox > div {
width: min-content;
outline: 1px solid blue;
}
.percent-height {
min-height: 100%;
}
.fixed-height {
height: 100px;
}
.align-start {
align-items: start;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function mutateContent() {
document.querySelectorAll("#one, #two, #three").forEach((element) => {
element.innerHTML += " a";
});
document.querySelector("#four").style.width = "auto";
document.querySelector("#five").style.height = "auto";
document.querySelector("#six").style.height = "100px";
document.querySelectorAll("#seven, #eight").forEach((element) => {
element.style.alignItems = "start";
});
}
</script>
</head>
<body>
<!-- Non-percent height flex item is mutated and percent height flex item should be
stretched up. -->
<div class="flexbox test" data-expected-height="40">
<div id="one" class="test" data-expected-height="40">a a a</div>
<div class="percent-height test" data-expected-height="40">a</div>
</div>
<!-- Non-percent height flex item content is mutated and should be stretched to percent
height flex item's size. -->
<div class="flexbox test" data-expected-height="40">
<div id="two" class="min-content percent-height test" data-expected-height="40">a a a</div>
<div class="test" data-expected-height="40">a</div>
</div>
<!-- Percent height flex item content is mutated and increased flexbox's cross axis size. -->
<div class="flexbox test" data-expected-height="30">
<div class="min-content percent-height test" data-expected-height="30">a a a</div>
<div id="three" data-expected-height="30">a</div>
</div>
<!-- Percent height flex item's main axis size changes from min-content to auto which
should result in different cross size. -->
<div class="flexbox test" data-expected-height="10">
<div class="min-content percent-height test" id="four" data-expected-height="10">a a a</div>
</div>
<!-- Flexbox with align-items: flex-start changes from definite to indefinite cross size
which results in different hypothetical cross size for flex item.-->
<div class="flexbox fixed-height align-start test" id="five" data-expected-height="30">
<div class="min-content percent-height test" data-expected-height="30">a a a</div>
<div class="test" data-expected-height="10">a</div>
</div>
<!-- Flexbox with align-items: flex-start changes from indefinite to definite cross size
which results in different hypothetical cross size for the flex item. -->
<div class="flexbox align-start test" id="six" data-expected-height="100">
<div class="min-content percent-height test" data-expected-height="100">a a a</div>
</div>
<!-- Outer flexbox goes from stretching its content to no longer stretching with a
definite cross size. The inner flexbox is no longer stretching which affects the
hypothetical cross axis size of its flex item. -->
<div class="flexbox fixed-height test" id="seven" data-expected-height="100"">
<div class="flexbox align-start test" data-expected-height="30">
<div class="min-content percent-height test" data-expected-height="30">a a a</div>
</div>
</div>
<!-- Grid goes from stretching its content to no longer stretching with a definite cross
size. The flexbox is no longer stretching which affects the hypothetical cross axis
size of tis flex item.-->
<div class="grid fixed-height test" id="eight" data-expected-height="100">
<div class="flexbox align-start test" data-expected-height="30">
<div class="min-content percent-height test" data-expected-height="30">a a a</div>
</div>
</div>
</body>
<script>
document.body.offsetHeight;
mutateContent();
document.body.offsetHeight;
let tests = document.querySelectorAll(".test");
tests.forEach((element) => {
test(function() {
let expectedHeight = element.getAttribute("data-expected-height");
assert_equals(element.offsetHeight, Number(expectedHeight), "height");
});
});
</script>
</html>
|