зеркало из https://github.com/mozilla/gecko-dev.git
41 строка
973 B
HTML
41 строка
973 B
HTML
<html>
|
|
<meta charset="UTF-8">
|
|
<head>
|
|
<style>
|
|
body { line-height: 5em; }
|
|
ruby { display: ruby; }
|
|
rb { display: ruby-base; white-space: nowrap; }
|
|
rp { display: none; }
|
|
rt { display: ruby-text; white-space: nowrap; font-size: 50%; }
|
|
rbc { display: ruby-base-container; }
|
|
rtc { display: ruby-text-container; }
|
|
ruby, rb, rt, rbc, rtc { unicode-bidi: isolate; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
<ruby>
|
|
<rbc> <rb> </rb> <rb>Base three</rb> </rbc>
|
|
<rtc> <rt> </rt> <rt>Text three</rt> </rtc> <rtc><rt></rt></rtc>
|
|
<rbc><rb>Segment two</rb></rbc><rtc><rt></rt></rtc>
|
|
</ruby>
|
|
</p>
|
|
|
|
<p>
|
|
<ruby>
|
|
<rb>Base one</rb> <rb>Base three</rb>
|
|
<rt>Text one</rt> <rt>Text three</rt>
|
|
</ruby>
|
|
</p>
|
|
|
|
<p>
|
|
<rb>Segment one</rb> <rbc> <rb> </rb> <rb>Base three</rb> </rbc
|
|
> <rtc><rt> </rt> <rt>Text three</rt></rtc>
|
|
|
|
<rb>Base one</rb> <rb>Base three</rb> <rt>Text one</rt><rt>Text two/three</rt>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|