tor-browser

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

out-of-flow-in-multicolumn-067.html (970B)


      1 <!DOCTYPE html>
      2 <title>
      3  Out-of-flow positioned element in multicol with inline containing
      4  block and vertical-rl writing mode.
      5 </title>
      6 <link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking">
      7 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      9 <style>
     10  .multicol {
     11    writing-mode: vertical-rl;
     12    columns: 2;
     13    column-fill: auto;
     14    height: 100px;
     15    width: 100px;
     16    column-gap: 0px;
     17    color: red;
     18    font: 20px/1 Ahem;
     19  }
     20  .abs {
     21    position: absolute;
     22    inline-size: 50px;
     23    inset-block-end: 0;
     24    inset-block-start: 0;
     25    inset-inline-start: 0;
     26    background: green;
     27  }
     28 </style>
     29 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     30 <div class="multicol">
     31  <div>
     32    <span style="position: relative;">
     33      AA AA AA AA AA
     34      AA AA AA AA AA
     35      <div class="abs"></div>
     36    </span>
     37  </div>
     38 </div>