text-transform-tailoring-001a.html (1027B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"/> 5 <title>CSS3 Text, text transform: capitalize, Dutch IJ, non-canonical lang tag</title> 6 <meta name="assert" content="[Exploratory] the brower tailors text-transform: capitalize to put both I and J in titlecase at the start of a word when the language is Dutch."> 7 <!-- copied from text-transform-tailoring-001.html with lang tag modified --> 8 <link rel='help' href='https://drafts.csswg.org/css-text-3/#text-transform'> 9 <link rel="match" href="reference/text-transform-tailoring-001-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: capitalize; } 14 </style> 15 </head> 16 <body> 17 <p class="instructions">Test passes if the orange boxes are identical.</p> 18 <div class="test" lang="NL">ijsland</div> 19 <div class="ref">IJsland</div> 20 </body> 21 </html>