Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / ruby / rubyDOM-insert-text1.html
blob18c12fef051be5228b25d161e1c86310df336e43
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script>
5 function test()
7 var ruby = document.getElementById('R');
8 var rt = document.getElementById('RT');
9 var newText = document.createTextNode('ML');
10 ruby.insertBefore(newText, rt);
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 a &lt;rt&gt; element</p>
16 <p>Both lines should look identical (the first line is the one manipulated).</p>
17 <br>
18 <br>
19 <p>&lt;ruby&gt; is defined in the <ruby id="R">HT<rt>Hyper-text</rt><rt id="RT">Markup Language</rt>5</ruby> spec.</p>
20 <p>&lt;ruby&gt; is defined in the <ruby>HT<rt>Hyper-text</rt>ML<rt>Markup Language</rt>5</ruby> spec.</p>
21 </body>
22 </html>