tor-browser

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

multicol-under-vertical-rl-scroll.html (674B)


      1 <!DOCTYPE html>
      2 <title>Multicol under vertical-rl scrolling container</title>
      3 <link rel="match" href="multicol-under-vertical-rl-scroll-ref.html">
      4 <link rel="help" href="https://drafts.csswg.org/css-multicol">
      5 <meta name="assert" content="Test that multicol works as expected when overflow is scrolling in vertical-rl" />
      6 <p>Passes if there are two green squares</p>
      7 <div style="width: 200px; height: 200px; overflow: scroll; writing-mode: vertical-rl; border: 1px solid black">
      8  <div style="columns: 2; column-gap: 20px; width: 80px; height: 180px">
      9    <div style="width: 160px; background: green"></div>
     10  </div>
     11  <div style="width: 500px; height: 500px"></div>
     12 </div>