text-transform-tailoring-005

CSS3 Text, text transform: uppercase, Greek disjunctive eta

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Assertion
[Exploratory] the brower tailors text-transform: uppercase such that a disjunctive eta in a Greek sentence keeps its tonos diacritic.

Source

 1 <!DOCTYPE html>
 2 <html lang="en"><head>
 3 <meta charset="utf-8">
 4 <title>CSS3 Text, text transform: uppercase, Greek disjunctive eta</title>
 5 <meta content="[Exploratory] the brower tailors text-transform: uppercase such that a disjunctive eta in a Greek sentence keeps its tonos diacritic." 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-tailoring-005-ref.htm" rel="match">
 9 <style type="text/css">
10 .test, .ref { font-size: 36px; font-family: 'Gentium Plus', 'Noto Serif', 'Noto Sans', webfont, sans-serif; border: 1px solid orange; margin: 10px; width: 400px;  padding: 5px; }
11 /* the CSS above is not part of the test */
12 .test { text-transform: uppercase	; }
13 </style>
14 </head>
15 <body>
16 <p class="instructions">Test passes if the orange boxes are identical.</p>
17 <div lang="el" class="test">ήσουν ή εγώ ή εσύ</div>
18 <div class="ref">ΗΣΟΥΝ Ή ΕΓΩ Ή ΕΣΥ</div>
19 <!-- Notes:
20 The result of this test should be ignored if text-transform-tailoring-002 fails.
21 -->
22 
23 </body></html>