tor-browser

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

anonymous-flex-item-006.html (681B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Flexbox Test: Flex item - non-contiguous text runs - position:absolute and node removal</title>
      4 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
      5 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-items">
      6 <link rel="match" href="anonymous-flex-item-split-ref.html">
      7 <style>.abs { position:absolute }</style>
      8 <p>The words "Two" and "lines" should not be on the same line.</p>
      9 <div style="display:flex;flex-direction:column">Two <span class="abs"></span><span id="spanRemove"></span><span class="abs"></span>lines</div>
     10 <script>
     11  document.body.offsetTop;
     12  spanRemove.remove();
     13 </script>