1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: text-transform - Full-width Latin, lowercase</title>
5 <link rel="author" title="Richard Ishida" href="http://rishida.net">
6 <link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#caps-prop">
8 <link rel="alternate" href="http://www.w3.org/International/tests/tests-html-css/tests-text-transform/generate?test=20">
9 <meta name="flags" content="">
10 <meta name="assert" content="The UA will lowercase Unicode Full-width Latin when text-transform is set to lowercase.">
11 <style type="text/css">
12 .test span { text-transform: lowercase; }
13
14 /* the CSS below is not part of the test */
15 .test { font-size: 130%; line-height: 2.5; color: blue; }
16 .test div { white-space: nowrap; text-align: center;
17 width: 5em; display: inline-block; }</style>
18 <script type="text/javascript">
19 //
20 function setFontFamily () {var fontName = document.getElementById( 'fontName' ).value; var divs = document.getElementsByTagName('div'); var i = 0; var div; while (i < divs.length) { div = divs.item(i); if (div.className == 'test') { div.style.fontFamily = fontName; } i++; } }
21 //
22 </script>
23 </head>
24 <body>
25 <p class="instructions">Test passes if the left-hand character in each pair matches the right-hand one.</p>
26
27
28 <div class="test">
29 <div><span>A</span> a</div>
30 <div><span>B</span> b</div>
31 <div><span>C</span> c</div>
32 <div><span>D</span> d</div>
33 <div><span>E</span> e</div>
34 <div><span>F</span> f</div>
35 <div><span>G</span> g</div>
36 <div><span>H</span> h</div>
37 <div><span>I</span> i</div>
38 <div><span>J</span> j</div>
39 <div><span>K</span> k</div>
40 <div><span>L</span> l</div>
41 <div><span>M</span> m</div>
42 <div><span>N</span> n</div>
43 <div><span>O</span> o</div>
44 <div><span>P</span> p</div>
45 <div><span>Q</span> q</div>
46 <div><span>R</span> r</div>
47 <div><span>S</span> s</div>
48 <div><span>T</span> t</div>
49 <div><span>U</span> u</div>
50 <div><span>V</span> v</div>
51 <div><span>W</span> w</div>
52 <div><span>X</span> x</div>
53 <div><span>Y</span> y</div>
54 <div><span>Z</span> z</div>
55 </div>
56
57
58 <p id="fontChange" style="display: none;" class="notes">If you are unable to see font glyphs for certain characters using the browsers default font you can apply a specific font by typing its name in the following box: <input class="css" name="fontName" id="fontName" value="" type="text"> <button class="notes" type="button" onclick="setFontFamily()">Apply</button></p><script type="text/javascript">if (document.getElementById) {document.getElementById('fontChange').style.display = 'block'}</script></body>
59 </html>