tor-browser

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

input-placeholder-inline-size-crash.html (495B)


      1 <!doctype html>
      2 <title>CSS Container Queries Test: Crash: input inline-size container with placeholder</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container">
      4 <link rel="help" href="https://crbug.com/1288692">
      5 <p>Pass if this test does not crash</p>
      6 <input id="input" style="container-type:size">
      7 <script>
      8  document.body.offsetTop;
      9  input.style.position = "absolute";
     10  input.setAttribute("placeholder", "placeholder");
     11  document.body.offsetTop;
     12 </script>