Tests: Import a bunch of WPT tests from /css/css-flexbox

This commit is contained in:
Andreas Kling
2024-10-28 21:03:26 +01:00
committed by Andreas Kling
parent 0ebdac0b35
commit abd24d001d
Notes: github-actions[bot] 2024-10-30 09:18:21 +00:00
688 changed files with 27834 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<!DOCTYPE html>
<title>CSS Flexbox: Shrink column</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-property">
<link href="support/flexbox.css" rel="stylesheet">
<meta name="assert" content="This test ensures that flexbox shrinks the column height of a flex item
after applying a new style.">
<style>
body {
width: 800px;
height: 600px;
}
.green {
background: green;
}
.blue {
background: blue;
}
.inner {
height: 200px;
}
.small {
height: 100px;
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../../resources/check-layout-th.js"></script>
<script>
onload = function() {
document.body.offsetWidth;
document.getElementById("target").classList.add("small");
checkLayout("body");
};
</script>
<body class="flexbox column">
<div class="flexbox column flex-one-one-auto">
<div class="flex-one-one-auto green" data-expected-height="250" id="target">
<div class="inner"></div>
</div>
<div class="flex-one-one-auto blue" data-expected-height="350">
<div class="inner"></div>
</div>
</div>
<div id=log></div>