tor-browser

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

inner-first-line-non-matching.html (456B)


      1 <!doctype html>
      2 <title>CSS Container Queries Test: Non-matching ::first-line in @container</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-queries">
      4 <link rel="match" href="inner-first-line-non-matching-ref.html">
      5 <style>
      6  #outer::first-line { color: green }
      7  @container (width > 99999px) {
      8    #inner::first-line { color: red }
      9  }
     10 </style>
     11 <div id="outer">
     12  <div id="inner">This text should be green.</div>
     13 </div>