text-transform-upperlower-032

CSS3 Text, text transform: German sharp S, uppercase

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Assertion
text-transform: uppercase will uppercase the German sharp S as described in Unicode's SpecialCasing.txt .

Source

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