blob: 9cfe65059d117d63837ee2c534c621f2f0e0af39 (
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
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Ruby test: dir=rtl on rb and rt elements</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://drafts.csswg.org/css-ruby-1/#bidi">
<link rel="match" href="ruby-bidi-004-ref.html">
<style>
div { font-size: 50px; }
rb, rt, span { unicode-bidi: isolate; }
</style>
<p>All three examples should look the same:</p>
<div>
<p>
<ruby dir=rtl>۱ ۲ ۳<rt>1 2 3</rt></ruby>
</p>
<p>
<ruby><span dir=rtl>۱ ۲ ۳</span><rt dir=rtl>1 2 3</rt></ruby>
</p>
<p>
<ruby><rb dir=rtl>۱ ۲ ۳</rb><rt dir=rtl>1 2 3</rt></ruby>
</p>
</div>
|