tor-browser

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

text-transform-upperlower-032.html (887B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8"/>
      5 <title>CSS3 Text, text transform: German sharp S, uppercase</title>
      6 <meta name="assert" content="text-transform: uppercase will uppercase the German sharp S as described in Unicode's SpecialCasing.txt .">
      7 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
      8 <link rel='help' href='https://drafts.csswg.org/css-text-3/#text-transform'>
      9 <link rel="match" href="reference/text-transform-upperlower-032-ref.html">
     10 <style type='text/css'>
     11 .test, .ref { font-size: 125%; line-height: 1.5em; }
     12 .test span, .ref span { margin-right: 1em; white-space: nowrap; }
     13 /* the CSS above is not part of the test */
     14 .test { text-transform: uppercase; }
     15 </style>
     16 </head>
     17 <body>
     18 <p class="instructions">Test passes if both characters below match.</p>
     19 <div class="test" lang="de"><span>&#x00DF; SS</span></div>
     20 </body>
     21 </html>