summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/select/select-text-transform.html
blob: 554b644ef511b4bfacc76cbaf1e0cb58327fe9ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<head>
<meta charset="iso-8859-1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<style>
    .upper * { text-transform: uppercase; }
    .capitalized * { text-transform: capitalize; }
    .lower * { text-transform: lowercase; }
</style>
The text in the button, popup menu and list box should have the same case as in the
accompanying text.
<div class="upper">
    <select><option>heLLo</option><option>woRLd</option></select>
    <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
    <span>heLLo woRLd</span>
</div>
<div class="capitalized">
    <select><option>heLLo</option><option>woRLd</option></select>
    <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
    <span>heLLo woRLd</span>
</div>
<div class="lower">
    <select><option>heLLo</option><option>woRLd</option></select>
    <select multiple="true"><option>heLLo</option><option>woRLd</option></select>
    <span>heLLo woRLd</span>
</div>
<div class="upper">
    <select><option>ß</option><option>ßß</option></select>
    <select multiple="true"><option>ß</option><option>ßß</option></select>
    <span>ß ßß</span>
</div>
<div class="capitalized">
    <select><option>ß</option><option>ßß</option></select>
    <select multiple="true"><option>ß</option><option>ßß</option></select>
    <span>ß ßß</span>
</div>
<div class="lower">
    <select><option>ß</option><option>ßß</option></select>
    <select multiple="true"><option>ß</option><option>ßß</option></select>
    <span>ß ßß</span>
</div>
</body>