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