tor-browser

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

dynamic-orthogonal-flex-item.html (678B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1456196">
      3 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      4 <style>
      5 span {
      6  display: inline-block;
      7  inline-size: 100px;
      8  block-size: 50px;
      9 }
     10 </style>
     11 <p>Test passes if there is a filled green square.</p>
     12 <div id="target" style="width: 100px; height: 200px; line-height: 0;">
     13  <div style="display: inline-flex; height: 100%; background: green;">
     14    <div style="writing-mode: vertical-rl;">
     15      <span></span><span></span>
     16    </div>
     17  </div>
     18 </div>
     19 <script>
     20 document.body.offsetTop;
     21 document.getElementById('target').style.height = '100px';
     22 </script>