insertion-in-first-line-8.html (293B)
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 var span = document.createElement('span'); 10 span.textContent = 'This should be '; 11 y.insertBefore(span, y.firstChild); 12 </script>