tor-browser

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

box-chrome-crash-001.html (659B)


      1 <!DOCTYPE html>
      2 <title>CSS Box: chrome crash</title>
      3 <link rel="author" href="mailto:atotic@google.com">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <link rel="help" href="https://crbug.com/967361">
      7 <meta name="assert" content="Chrome does not crash on narrow div with scrollbars.">
      8 <style>
      9 body  {
     10  writing-mode: vertical-lr;
     11 }
     12 #target {
     13  overflow-y: scroll;
     14  max-height: 5px;
     15  background: gray;
     16 }
     17 </style>
     18 <!--  -->
     19 <div>
     20  <span>
     21    <div id="container">
     22      <div id="target">anon</div>
     23    </div>
     24  </span>
     25 </div>
     26 
     27 <script>
     28 test(() => {
     29 }, 'test passes if it does not crash');
     30 </script>