tor-browser

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

viewport-unit-inline-style-crash.html (313B)


      1 <!DOCTYPE html>
      2 <title>Don't crash when setting viewport units on inline style</title>
      3 <link rel="help" href="https://crbug.com/1402548">
      4 <div id="div">
      5  PASS if no crash
      6 </div>
      7 <script>
      8  div.style.setProperty("margin-bottom", "1px");
      9  div.offsetTop;
     10  div.style.setProperty("margin-bottom", "1vh");
     11 </script>