Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-transform/text-transform-upperlower-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>CSS3 Text, text transform: Latin Basic and Latin-1 uppercase</title>
<meta name="assert" content="For the Latin Basic and Latin-1 blocks, text-transform: uppercase puts all letters in uppercase .">
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<link rel="match" href="reference/text-transform-upperlower-001-ref.html">
<style type='text/css'>
@font-face {
font-family: 'webfont';
src: url('/fonts/DoulosSIL-R.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.test, .ref { font-size: 125%; line-height: 1.5em; font-family: 'Doulos SIL', 'Noto Serif', 'Noto Sans', webfont, sans-serif; }
.test span, .ref span { margin-right: 1em; white-space: nowrap; }
/* the CSS above is not part of the test */
.test { text-transform: uppercase; }
</style>
</head>
<body>
<p class="instructions">Test passes if both characters in each pair match. If you are missing a font glyph for a character, ignore that pair, but report which characters were ignored.</p>
<div class="test"><span>a A</span> <span>b B</span> <span>c C</span> <span>d D</span> <span>e E</span> <span>f F</span> <span>g G</span> <span>h H</span> <span>i I</span> <span>j J</span> <span>k K</span> <span>l L</span> <span>m M</span> <span>n N</span> <span>o O</span> <span>p P</span> <span>q Q</span> <span>r R</span> <span>s S</span> <span>t T</span> <span>u U</span> <span>v V</span> <span>w W</span> <span>x X</span> <span>y Y</span> <span>z Z</span> <span title="U+00B5">µ Μ</span> <span title="U+00E0">à À</span> <span title="U+00E1">á Á</span> <span title="U+00E2">â Â</span> <span title="U+00E3">ã Ã</span> <span title="U+00E4">ä Ä</span> <span title="U+00E5">å Å</span> <span title="U+00E6">æ Æ</span> <span title="U+00E7">ç Ç</span> <span title="U+00E8">è È</span> <span title="U+00E9">é É</span> <span title="U+00EA">ê Ê</span> <span title="U+00EB">ë Ë</span> <span title="U+00EC">ì Ì</span> <span title="U+00ED">í Í</span> <span title="U+00EE">î Î</span> <span title="U+00EF">ï Ï</span> <span title="U+00F0">ð Ð</span> <span title="U+00F1">ñ Ñ</span> <span title="U+00F2">ò Ò</span> <span title="U+00F3">ó Ó</span> <span title="U+00F4">ô Ô</span> <span title="U+00F5">õ Õ</span> <span title="U+00F6">ö Ö</span> <span title="U+00F8">ø Ø</span> <span title="U+00F9">ù Ù</span> <span title="U+00FA">ú Ú</span> <span title="U+00FB">û Û</span> <span title="U+00FC">ü Ü</span> <span title="U+00FD">ý Ý</span> <span title="U+00FE">þ Þ</span> <span title="U+00FF">ÿ Ÿ</span></div>
</body>
</html>