summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/1426042-1.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 /layout/reftests/bidi/1426042-1.html
parentInitial commit. (diff)
downloadfirefox-esr-upstream.tar.xz
firefox-esr-upstream.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/bidi/1426042-1.html')
-rw-r--r--layout/reftests/bidi/1426042-1.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/layout/reftests/bidi/1426042-1.html b/layout/reftests/bidi/1426042-1.html
new file mode 100644
index 0000000000..724b720d50
--- /dev/null
+++ b/layout/reftests/bidi/1426042-1.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html dir="rtl" lang="ar">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<meta charset="utf-8">
+<style>
+html[dir="rtl"] {
+ direction: rtl;
+}
+.outer {
+ border: 1px solid blue;
+ margin: 1em;
+ padding: 5px 0;
+ clear: left;
+ float: left;
+}
+.before {
+ margin-left: 20px;
+ border: 5px solid green;
+}
+.after {
+ margin-right: 20px;
+ border: 5px solid red;
+}
+.test1::before {
+ content: "";
+ margin-left: 20px;
+ border: 5px solid green;
+}
+.test1::after {
+ content: "";
+ margin-right: 20px;
+ border: 5px solid red;
+}
+.test2::before {
+ content: "\200b";
+ margin-left: 20px;
+ border: 5px solid green;
+}
+.test2::after {
+ content: "\200b";
+ margin-right: 20px;
+ border: 5px solid red;
+}
+</style>
+</head>
+<body>
+<div dir="ltr">
+The text in all three boxes should be centered, with a green bar to the far right and a red bar to the far left:
+</div>
+<div class="outer">
+ <div><span class="before"></span><span>السلام عليكم</span><span class="after"></span></div>
+</div>
+<div class="outer">
+ <div class="test1"><span>السلام عليكم</span></div>
+</div>
+<div class="outer">
+ <div class="test2"><span>السلام عليكم</span></div>
+</div>
+</body>
+</html>