summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/1426042-1.html
blob: 724b720d50aade140a75d81b5be94b658c9c976b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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>