Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / ruby / ruby-text-before-child-split.html
blob5aefb4976ad735b9f9c5a80fc13ab6ff420efdea
1 <!DOCTYPE html>
2 <html style="font-family: Ahem; font-size: 10px; -webkit-font-smoothing: none; color: white;">
3 <body>
4 <ruby id="ruby1">
5 A<i><div></div></i>B
6 </ruby>
7 <script>
8 document.body.offsetTop;
9 ruby1 = document.getElementById('ruby1');
10 ruby1.insertBefore(document.createElement('rt'), ruby1.lastChild);
11 </script>
12 </body>
13 </html>