text-transform-tailoring-003.html (1149B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"/> 5 <title>CSS3 Text, text transform: uppercase, more Greek accents</title> 6 <meta name="assert" content="[Exploratory] the brower tailors text-transform: uppercase such that Greek words that are all uppercase convert tonos plus dialytika to just dialytika, and convert diphthongs with tonos on the first character to a dialytika on the second character."> 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-tailoring-003-ref.html"> 10 <style type='text/css'> 11 .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; } 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 the orange boxes are identical.</p> 18 <div class="test" lang="el">ευφυΐα Νεράιδα</div> 19 <div class="ref">ΕΥΦΥΪΑ ΝΕΡΑΪΔΑ</div> 20 </body> 21 </html>