text-transform-upperlower-038.html (1133B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"/> 5 <title>CSS3 Text, text transform: Greek final sigma, lowercase</title> 6 <meta name="assert" content="text-transform: lowercase will lowercase Greek final sigma at the end of a word 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-038-ref.html"> 10 <style type='text/css'> 11 @font-face { 12 font-family: 'webfont'; 13 src: url('/fonts/GentiumPlus-R.woff') format('woff'); 14 font-weight: normal; 15 font-style: normal; 16 } 17 .test, .ref { font-size: 36px; font-family: 'Gentium Plus', 'Noto Serif', 'Noto Sans', webfont, sans-serif; border: 1px solid orange; margin: 10px; width: 200px; padding: 5px; } 18 /* the CSS above is not part of the test */ 19 .test { text-transform: lowercase; } 20 </style> 21 </head> 22 <body> 23 <p class="instructions">Test passes if the orange boxes are identical.</p> 24 <div class="test">ΟΔΥΣΣΕΥΣ</div> 25 <div class="ref">οδυσσευς</div> 26 </body> 27 </html>