blob: b1714f10fc279810beb6ac7889d16a1e6c7050db [file] [log] [blame]
rolandsteiner@chromium.org616ea222009-11-04 03:26:29 +00001<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4<script>
5function test()
6{
rolandsteiner@chromium.org4a8184a2010-01-21 07:06:12 +00007 var ruby = document.getElementById('R');
8 var text = document.getElementById('ML');
9 var newText = document.createTextNode('HT');
10 ruby.insertBefore(newText, text);
rolandsteiner@chromium.org616ea222009-11-04 03:26:29 +000011}
12</script>
13</head>
14<body onload="test()">
15<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>
16<p>Both lines should look identical (the first line is the one manipulated).</p>
17<br>
18<br>
rolandsteiner@chromium.org4a8184a2010-01-21 07:06:12 +000019<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>
20<p>&lt;ruby&gt; is defined in the <ruby>HT<span>ML</span><rt>Hyper-text Markup Language</rt>5</ruby> spec.</p>
rolandsteiner@chromium.org616ea222009-11-04 03:26:29 +000021</body>
22</html>