insertion-in-first-line-10.html (310B)
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 var span = document.createElement('span'); 11 span.textContent = 'green'; 12 y.appendChild(span); 13 </script>