tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / text-transform-select.html
1 <!doctype html>
2 <style>
3     .upper * { text-transform: uppercase; }
4     .capitalized * { text-transform: capitalize; }
5     .lower * { text-transform: lowercase; }
6 </style>
7 The text in the button, popup menu and list box should have the same case as in the
8 accompanying text.
9 <div class="upper">
10     <select><option>heLLo</option><option>woRLd</option></select>
11     <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
12     <span>heLLo woRLd</span>
13 </div>
14 <div class="capitalized">
15     <select><option>heLLo</option><option>woRLd</option></select>
16     <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
17     <span>heLLo woRLd</span>
18 </div>
19 <div class="lower">
20     <select><option>heLLo</option><option>woRLd</option></select>
21     <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
22     <span>heLLo woRLd</span>
23 </div>
24 <div class="upper">
25     <select><option>ß</option><option>ßß</option></select>
26     <select multiple="true"><option>ß</option><option>ßß</option></select>
27     <span>ß ßß</span>
28 </div>
29 <div class="capitalized">
30     <select><option>ß</option><option>ßß</option></select>
31     <select multiple="true"><option>ß</option><option>ßß</option></select>
32     <span>ß ßß</span>
33 </div>
34 <div class="lower">
35     <select><option>ß</option><option>ßß</option></select>
36     <select multiple="true"><option>ß</option><option>ßß</option></select>
37     <span>ß ßß</span>
38 </div>