summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/select/select-text-transform-expected.html
blob: 82b2c9bb7a1187ef7ca3e3f2494881ed8479e87b (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
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
The text in the button, popup menu and list box should have the same case as in the
accompanying text.
<div>
    <select><option>HELLO</option><option>WORLD</option></select>
    <select multiple="true"><option>HELLO</option><option>WORLD</option></select>
    <span>HELLO WORLD</span>
</div>
<div>
    <select><option>HeLLo</option><option>WoRLd</option></select>
    <select multiple="true"><option>HeLLo</option><option>WoRLd</option></select>
    <span>HeLLo WoRLd</span>
</div>
<div>
    <select><option>hello</option><option>world</option></select>
    <select multiple="true"><option>hello</option><option>world</option></select>
    <span>hello world</span>
</div>
<div>
    <select><option>SS</option><option>SSSS</option></select>
    <select multiple="true"><option>SS</option><option>SSSS</option></select>
    <span>SS SSSS</span>
</div>
<div>
    <select><option>ß</option><option>ßß</option></select>
    <select multiple="true"><option>ß</option><option>ßß</option></select>
    <span>ß ßß</span>
</div>
<div>
    <select><option>ß</option><option>ßß</option></select>
    <select multiple="true"><option>ß</option><option>ßß</option></select>
    <span>ß ßß</span>
</div>
</body>