<!--
@MAC-ALLOW:AXHelp*
-->
<!DOCTYPE html>
<html>
<body>
<!-- ruby with base text inside of <rb> -->
<ruby>
<rb>ruby base</rb>
<rp>(</rp>
<rt>ruby text</rt>
<rp>)</rp>
</ruby>
<!-- ruby with base text as direct child -->
<p>
<ruby>
ruby base<rt>ruby text</rt>
</ruby>
</p>
<!-- ruby inline with other content -->
<p>
Hi! <ruby>
<rb>ruby base</rb><rt>ruby text</rt>
</ruby>
</p>
<!-- Line-broken ruby -->
<p style="font-family:monospace; width:5ch;">
<ruby>ruby base<rt>ruby text</rt></ruby>
</p>
</body>
</html>