tor-browser

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

first-line-on-ancestor-block.html (424B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
      3 <link rel="match" href="first-line-on-ancestor-block-ref.html">
      4 <style>
      5  #block::first-line { color: green; }
      6 </style>
      7 <div id="block">
      8  <div>
      9    <div style="color: blue">
     10      <div>
     11        <span><span>This text should be green.</span></span><br>
     12        This text should be blue.
     13      </div>
     14    </div>
     15  </div>
     16 </div>