tor-browser

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

textarea-setRangeText-utf16-code-unit-crash.html (343B)


      1 <!DOCTYPE html>
      2 <title>setRangeText: Should not crash when setting text range intersects UTF-16 code units</title>
      3 <link rel="help" href="https://github.com/servo/servo/issues/36719">
      4 <script>
      5  textarea = document.createElement("textarea");
      6  textarea.defaultValue = String.fromCodePoint(806453);
      7  textarea.setRangeText("", 0, 1);
      8 </script>