blob: b1714f10fc279810beb6ac7889d16a1e6c7050db [file] [log] [blame]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script>
function test()
{
var ruby = document.getElementById('R');
var text = document.getElementById('ML');
var newText = document.createTextNode('HT');
ruby.insertBefore(newText, text);
}
</script>
</head>
<body onload="test()">
<p>The following is a test for DOM manipulation within &lt;ruby&gt;: Inserting a new text before another text of a ruby base.</p>
<p>Both lines should look identical (the first line is the one manipulated).</p>
<br>
<br>
<p>&lt;ruby&gt; is defined in the <ruby id="R"><span id="ML">ML</span><rt>Hyper-text Markup Language</rt>5</ruby> spec.</p>
<p>&lt;ruby&gt; is defined in the <ruby>HT<span>ML</span><rt>Hyper-text Markup Language</rt>5</ruby> spec.</p>
</body>
</html>