Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select / select-text-transform.html
blob554b644ef511b4bfacc76cbaf1e0cb58327fe9ee
1 <!doctype html>
2 <head>
3 <meta charset="iso-8859-1">
4 <meta http-equiv="X-UA-Compatible" content="IE=edge">
5 </head>
6 <body>
7 <style>
8 .upper * { text-transform: uppercase; }
9 .capitalized * { text-transform: capitalize; }
10 .lower * { text-transform: lowercase; }
11 </style>
12 The text in the button, popup menu and list box should have the same case as in the
13 accompanying text.
14 <div class="upper">
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="capitalized">
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="lower">
25 <select><option>heLLo</option><option>woRLd</option></select>
26 <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
27 <span>heLLo woRLd</span>
28 </div>
29 <div class="upper">
30 <select><option>ß</option><option>ßß</option></select>
31 <select multiple="true"><option>ß</option><option>ßß</option></select>
32 <span>ß ßß</span>
33 </div>
34 <div class="capitalized">
35 <select><option>ß</option><option>ßß</option></select>
36 <select multiple="true"><option>ß</option><option>ßß</option></select>
37 <span>ß ßß</span>
38 </div>
39 <div class="lower">
40 <select><option>ß</option><option>ßß</option></select>
41 <select multiple="true"><option>ß</option><option>ßß</option></select>
42 <span>ß ßß</span>
43 </div>
44 </body>