tor-browser

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

font-variant-004.xht (1112B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: font-variant and color</title>
      5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      6   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/fonts/variant/001.xml" type="application/xhtml+xml"/>
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#small-caps" />
      8   <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-variant-prop" />
      9   <meta name="assert" content="if ‘small-caps’ or ‘all-small-caps’ is specified but small-caps glyphs are not available for a given font, user agents should simulate a small-caps font"/>
     10   <style type="text/css">
     11    span { color: green; font-variant: small-caps; }
     12    div { color: white; text-decoration: underline; }
     13   </style>
     14  </head>
     15  <body>
     16   <p>It must say PASSED below, in a small-caps font or a simulated small caps. Test fails if lowercase or normal uppercase used.</p>
     17   <div>
     18    <span>THIS TEST HAS: passed.</span>
     19   </div>
     20  </body>
     21 </html>