tor-browser

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

lang-023.html (564B)


      1 <!DOCTYPE html>
      2 <html lang="en-US">
      3 <meta charset="utf-8">
      4 <title>CSS Selectors 4 - :lang matching</title>
      5 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
      6 <link rel="help" href="https://drafts.csswg.org/selectors-4/#the-lang-pseudo">
      7 <link rel="match" href="lang-000-ref.html">
      8 
      9 <style>
     10 div.test { color: red; }
     11 :lang("x") { color: green; } /* not a well-formed lang tag, but matches per
     12                                the Extended Filtering algorithm */
     13 </style>
     14 
     15 <div class="test"><span lang="x-lojban">This should be green</span></div>