summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html
parentInitial commit. (diff)
downloadfirefox-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-writing-modes/srl-alongside-vrl-floats-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html b/testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html
new file mode 100644
index 0000000000..6f7ac1686b
--- /dev/null
+++ b/testing/web-platform/tests/css/css-writing-modes/srl-alongside-vrl-floats-ref.html
@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+<html>
+ <title>CSS Writing Modes Test Reference: positioning of a sideways-rl block alongside vertical-rl 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-rl;
+ }
+
+ 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">&nbsp;</div>
+ <div id="second-blue-float-with-clear">&nbsp;</div>
+ <div id="orange-bfc">&nbsp;</div>
+ </body>
+</html>