tor-browser

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

placeholder-input-dynamic-crash.html (355B)


      1 <!doctype html>
      2 <title>Dynamic placeholder attribute changes after addition shouldn't crash</title>
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1662483">
      4 <input type="text">
      5 <script>
      6  let input = document.querySelector("input");
      7  input.getBoundingClientRect();
      8  input.placeholder = "Foo";
      9  input.placeholder = "Bar";
     10 </script>