blob: 80f49f0dbcf3e3a76ba6f740243e19a5f627bfd2 (
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
|
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ruby: Ping Test</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/ruby/001.html"/>
<link rel="help" href="http://www.w3.org/TR/css3-ruby/"/>
<style type="text/css">
p { color: navy; }
.a ruby { display: ruby-base; display: inline; display: ruby-base; }
.a rbc { display: ruby-base-container; display: inline; display: ruby-base-container; }
.a rb { display: ruby-base; display: inline; display: ruby-base; }
.a rtc.before { display: ruby-text-container; display: inline; display: ruby-text-container; ruby-position: before; }
.a rtc.after { display: ruby-text-container; display: inline; display: ruby-text-container; ruby-position: after; }
.a rt { display: ruby-text; display: inline; display: ruby-text; ruby-span: 3; }
.b ruby { display: inline; }
.b rbc { display: inline; }
.b rb { display: inline; }
.b rtc { display: inline; }
.b rt { display: inline; }
</style>
</head>
<body>
<p>There should be exactly four lines of text below.</p>
<p>
<ruby class="a">
<rbc>
<rb> 2. This is </rb>
<rb> the second </rb>
<rb> line. </rb>
</rbc>
<rtc class="before">
<rt> 1. This is </rt>
<rt> the first </rt>
<rt> line. </rt>
</rtc>
<rtc class="after">
<rt> 3. This is the third line. </rt>
</rtc>
</ruby>
</p>
<p>
<ruby class="b">
<rbc>
<rb> 4. This </rb>
<rb> is </rb>
<rb> the </rb>
</rbc>
<rtc class="before">
<rt> fourth </rt>
<rt> and </rt>
<rt> final </rt>
</rtc>
<rtc class="after">
<rt> line. </rt>
</rtc>
</ruby>
</p>
</body>
</html>
|