tor-browser

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

orthogonal-flex-item-crash.html (641B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/1081086" />
      3 <meta name="assert" content="This test ensures that orthogonal flex and flex-items does not crash." />
      4 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      5 <body style="width: 100px; height: 100px; font: 12px/1 Ahem;">
      6  <div style="display: flex; writing-mode: vertical-rl;">
      7    text text
      8    <div style="min-height: 0; writing-mode: horizontal-tb;">
      9      <span id="target"></span>
     10      text
     11    </div>
     12  </div>
     13 </body>
     14 <script>
     15 document.body.offsetTop;
     16 const target = document.getElementById('target');
     17 target.parentElement.appendChild(target);
     18 </script>