diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html b/testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html new file mode 100644 index 0000000000..ef158c6a48 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/nested-orthogonal-flexbox-relayout.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> +<title>CSS Flexbox: nested orthogonal children on relayout.</title> +<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#flex-direction-property"> +<link rel="match" href="reference/nested-orthogonal-flexbox-relayout-ref.html"> +<meta name="assert" content="This test ensures nested orthogonal flex items get properly relaid out when flexbox changes dimensions."/> +<style> +#column { + display: flex; + flex-direction: column; + border: 5px solid yellow; +} + +#row { + display: flex; + flex-direction: row; + border: 5px solid blue; +} + +.item { + border: 5px solid green; +} +</style> +<body> +<div id="column"> + <div id="row"> + <div class="item">This text should not overflow its box</div> + </div> +</div> +<script> +var columnBox = document.getElementById("column"); +columnBox.offsetHeight; +columnBox.style.width = "200px"; +</script> |