diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html b/testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html new file mode 100644 index 0000000000..5502ba7ef1 --- /dev/null +++ b/testing/web-platform/tests/css/css-writing-modes/slr-alongside-vlr-floats-ref.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html> + <title>CSS Writing Modes Test Reference: positioning of a sideways-lr block alongside vertical-lr floats</title> + + <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> + <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> + <meta content="image" name="flags"> + + <style> + html { + writing-mode: vertical-lr; + } + + div { + block-size: 100px; + } + + div#first-olive-float { + background-color: olive; + float: left; + inline-size: 50%; + } + + div#second-blue-float-with-clear { + background-color: blue; + clear: left; + float: left; + inline-size: 25%; + } + + div#orange-bfc { + background-color: orange; + inline-size: 75%; + display: flow-root; /* Establishes a block formatting context */ + } + </style> + + <body> + <p><img src="support/ortho-htb-alongside-vrl-floats-002-exp-res.png" width="300" height="36" alt="Image download support must be enabled"></p> + <!-- + The image says: + Test passes if the orange rectangle + is below the blue rectangle. + --> + + <div id="first-olive-float"> </div> + <div id="second-blue-float-with-clear"> </div> + <div id="orange-bfc"> </div> + </body> +</html> |