tor-browser

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

quotes-035.html (915B)


      1 <!doctype html>
      2 <html lang="en">
      3 <meta charset=utf-8>
      4 <title>CSS Generated Content test: quotes</title>
      5 <meta name="assert" content="lang tag matching is not case-sensitive, and ignores extra subtags">
      6 <link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes">
      7 <link rel="help" href="https://www.rfc-editor.org/rfc/rfc4647.txt#:~:text=insensitive">
      8 <link rel=match href="reference/quotes-035-ref.html">
      9 <style>
     10 body { font: 15px serif; }
     11 p { margin: 3px 0; }
     12 </style>
     13 <body>
     14 <p>Test passes if quote marks in each pair of lines match:</p>
     15 
     16 <p lang="fr"><q>fr</q></p>
     17 <p lang="FR"><q>fr</q></p>
     18 <br>
     19 <p lang="en"><q>en</q></p>
     20 <p lang="eN-Us"><q>en</q></p>
     21 <br>
     22 <p lang="fi"><q>fi</q></p>
     23 <p lang="Fi"><q>fi</q></p>
     24 <br>
     25 <p lang="he"><q>he</q></p>
     26 <p lang="he-IL"><q>he</q></p>
     27 <br>
     28 <p lang="de"><q>de</q></p>
     29 <p lang="DE-LATN-DE"><q>de</q></p>
     30 <br>
     31 <p lang="ja"><q>ja</q></p>
     32 <p lang="JA"><q>ja</q></p>