insertion-in-first-line-11.html (278B)
1 <!DOCTYPE html> 2 <style> 3 div { color: red; } 4 div::first-line { color: green } 5 #y { display: inline-block; } 6 </style> 7 <div id="x"><span id="y">green</span></div> 8 <script> 9 x.offsetWidth; 10 y.insertBefore(document.createTextNode('This should be '), y.firstChild); 11 </script>