no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / first-line / insertion-in-first-line-7.html
blob903fd9a2c3db96418c8d427fdaf601de0904a357
1 <!DOCTYPE html>
2 <style>
3 div { color: red; }
4 div::first-line { color: green }
5 </style>
6 <div id="x"><span id="y">green</span></div>
7 <script>
8 x.offsetWidth;
9 y.insertBefore(document.createTextNode('This should be '), y.firstChild);
10 </script>