quotes-034.html (1000B)
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="In the case of an unknown region, the quotes displayed should be based on the fallback order."> 6 <link rel="help" href="https://drafts.csswg.org/css-content-3/#quotes"> 7 <link rel=match href="reference/quotes-034-ref.html"> 8 <style> 9 body { font: 15px serif; } 10 </style> 11 <body> 12 <p>Test passes if quote marks in each pair lines match:</p> 13 14 <p lang="fr"><q>fr FALLBACK</q></p> 15 <p lang="fr-FR"><q>fr FALLBACK</q></p> 16 17 <p lang="en"><q>en FALLBACK</q></p> 18 <p lang="en-EN"><q>en FALLBACK</q></p> 19 20 <p lang="fi"><q>fi FALLBACK</q></p> 21 <p lang="fi-FI"><q>fi FALLBACK</q></p> 22 23 <p lang="de"><q>de FALLBACK</q></p> 24 <p lang="de-DE"><q>de FALLBACK</q></p> 25 26 <p lang="he"><q>he FALLBACK</q></p> 27 <p lang="he-HE"><q>he FALLBACK</q></p> 28 29 <p lang="ja"><q>ja FALLBACK</q></p> 30 <p lang="ja-JA"><q>ja FALLBACK</q></p> 31 32 <p lang="aa"><q>root FALLBACK</q></p> 33 34 <p lang="zz"><q>root FALLBACK</q></p>