tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

first-line-first-letter-insert-crash.html (560B)


      1 <!DOCTYPE html>
      2 <title>Should not crash when inserting an element inside a :first-line pseudo.</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
      4 <style>
      5 p:first-line, p:first-letter {
      6  font-family: serif;
      7 }
      8 </style>
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <p id=target>
     12  test<sup>sup</sup>
     13 </p>
     14 <script>
     15 test(()=>{
     16  const target = document.getElementById('target');
     17  target.insertBefore(document.createElement('img'), target.lastChild)
     18 });
     19 </script>