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 /layout/reftests/writing-mode/1105268-1-min-max-dimensions.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/writing-mode/1105268-1-min-max-dimensions.html')
-rw-r--r-- | layout/reftests/writing-mode/1105268-1-min-max-dimensions.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1105268-1-min-max-dimensions.html b/layout/reftests/writing-mode/1105268-1-min-max-dimensions.html new file mode 100644 index 0000000000..1d4764187d --- /dev/null +++ b/layout/reftests/writing-mode/1105268-1-min-max-dimensions.html @@ -0,0 +1,61 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<style> +.wrapper { + display: inline-block; + vertical-align: top; + margin: 20px; +} +.outer { + height: 250px; + width: 200px; + border: 10px solid #ddd; +} +.inner { + font: 12px monospace; + background: yellow; + overflow: hidden; +} +.test1 { + min-width: 180px; + max-width: 180px; + min-height: 150px; + max-height: 150px; +} +.test2 { + min-width: 150px; + max-width: 150px; + min-height: 200px; + max-height: 200px; +} +.lr { + writing-mode: vertical-lr; +} +</style> + +</head> + +<body> + +<div class="wrapper"> +<div class="outer"> +<div class="inner test1 lr"> +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +</div> +</div> +</div> + +<br> + +<div class="wrapper"> +<div class="outer"> +<div class="inner test2 lr"> +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +</div> +</div> +</div> + +</body> +</html> |