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 /layout/reftests/columns/zero-height-nondirty-reflow.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 'layout/reftests/columns/zero-height-nondirty-reflow.html')
-rw-r--r-- | layout/reftests/columns/zero-height-nondirty-reflow.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/layout/reftests/columns/zero-height-nondirty-reflow.html b/layout/reftests/columns/zero-height-nondirty-reflow.html new file mode 100644 index 0000000000..b530e9d64b --- /dev/null +++ b/layout/reftests/columns/zero-height-nondirty-reflow.html @@ -0,0 +1,54 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>CSS Multi-column Layout Test: multi-column element with zero height</title> + <!-- + Based on + https://github.com/web-platform-tests/wpt/blob/1f346b050d87656a040fa4fdf9f99567164e2a2b/css/css-multicol/multicol-zero-height-001.xht + by Opera Software ASA. + --> + <style> + + html { overflow: hidden } /* suppress scrollbar reflows */ + + div#multi-column + { + height: 0; + orphans: 1; + widows: 1; + width: 200px; + border-bottom:1px solid red; + + column-count: 10; + column-gap: 0; + display: inline-block; + } + + div#multi-column > div + { + background: #0c0; + float: left; + height: 10px; + width: 20px; + } + </style> + </head> + <body style="height: 300px; width: 400px;"> + <p>Below should be a 1px tall and 200px wide green line:</p> + <div style="display: inline"> + <div id="multi-column"> + <div></div> + </div> + </div> + <script> + + /* + * Cause the multi-column element to be reflowed without being dirty or any resize bits set. + */ + var e = document.body; + e.offsetWidth; + e.style.width = "300px"; + + </script> + </body> +</html> |