diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html b/testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html new file mode 100644 index 0000000000..e2a65a501f --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/multiline-shrink-to-fit.html @@ -0,0 +1,73 @@ +<!DOCTYPE html> +<html> +<title>CSS Flexbox: multiline column flexboxes and shrink-to-fit.</title> +<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#intrinsic-sizes"> +<link rel="match" href="reference/multiline-shrink-to-fit-ref.html"> +<meta name="assert" content="This test ensures that multiline column flexboxes shrink-to-fit works properly."/> +<style> +.flexbox { + display: flex; + background-color: #aaa; + position: relative; + flex-wrap: wrap; + flex-direction: column; + float: left; + align-content: flex-start; +} +.flexbox > * { + flex: none; +} +.flexbox :nth-child(1) { + background-color: lightblue; +} +.flexbox :nth-child(2) { + background-color: lightgreen; +} +.flexbox :nth-child(3) { + background-color: pink; +} +.flexbox :nth-child(4) { + background-color: yellow; +} +</style> +<body> + +<div class="flexbox"> + <div style="width: 100px; height: 20px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 20px"></div> +</div> +<p style="clear:left">The grey background should be 100px wide.</p> + +<div class="flexbox" style="height: 30px"> + <div style="width: 100px; height: 20px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 20px"></div> +</div> +<p style="clear:left">The grey background should be 100px wide.</p> + +<div style="width: 150px"> +<div class="flexbox"> + <div style="width: 100px; height: 20px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 20px"></div> +</div> +</div> +<p style="clear:left">The grey background should be 100px wide.</p> + +<div style="width: 150px"> +<div class="flexbox" style="height: 35px"> + <div style="width: 100px; height: 20px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 10px"></div> + <div style="width: 100px; height: 20px"></div> +</div> +</div> +<p style="clear:left">The grey background should be 100px wide and 5px should +stick out the bottom.</p> + +</body> +</html> |