highlight-first-letter-float-crash.html (472B)
1 <!DOCTYPE html> 2 <html contenteditable> 3 <style> 4 div::first-letter { 5 float: right; 6 } 7 ::highlight(test) { background-color: purple; } 8 </style> 9 <div><span id="span1">a<span>bc</span></span></div> 10 <script> 11 const span1 = document.getElementById("span1"); 12 const text_node = span1.firstChild; 13 const range = document.createRange(); 14 range.setStart(text_node, 0); 15 range.setEnd(text_node, 1); 16 const highlight = new Highlight(range); 17 CSS.highlights.set("test", highlight); 18 </script>