tor-browser

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

chrome-crash-001.html (552B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=991446">
      3 <meta name="assert" content="The renderer should not crash.">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <body style="display: inline-grid; align-items: end;">
      7  <div style="border-top-color: inherit;"></div>
      8  text
      9 </body>
     10 <script>
     11 test(() => {
     12  document.body.offsetTop;
     13  document.body.style.alignItems = '';
     14  document.body.offsetTop;
     15 }, 'The renderer should not crash.');
     16 </script>