Status: PASS | Duration: 47ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-pseudo/first-line-first-letter-insert-crash.html
<!DOCTYPE html> <title>Should not crash when inserting an element inside a :first-line pseudo.</title> <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo"> <style> p:first-line, p:first-letter { font-family: serif; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <p id=target> test<sup>sup</sup> </p> <script> test(()=>{ const target = document.getElementById('target'); target.insertBefore(document.createElement('img'), target.lastChild) }); </script>