insertion-in-first-line-9.html (263B)
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">This should be </span></div> 8 <script> 9 x.offsetWidth; 10 y.appendChild(document.createTextNode('green')); 11 </script>