tor-browser

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

has-style-sharing-pseudo-008.html (625B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
      3 <link rel="help" href="https://drafts.csswg.org/selectors-4/#relational">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1876962">
      5 <link rel="match" href="has-style-sharing-pseudo-008-ref.html">
      6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      7 <meta name="assert" content="Ensure that style sharing optimizations do not interfere with :has() selector matching.">
      8 <style>
      9 ::marker {
     10  font: 15px/1 Ahem;
     11 }
     12 
     13 :has(> span)::marker {
     14  content: '';
     15 }
     16 </style>
     17 <ul>
     18  <li></li>
     19  <li><span></span></li>
     20 </ul>