Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select / select-text-transform-expected.html
blob82b2c9bb7a1187ef7ca3e3f2494881ed8479e87b
1 <!doctype html>
2 <head>
3 <meta charset="utf-8">
4 <meta http-equiv="X-UA-Compatible" content="IE=edge">
5 </head>
6 <body>
7 The text in the button, popup menu and list box should have the same case as in the
8 accompanying text.
9 <div>
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>
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>
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>
25 <select><option>SS</option><option>SSSS</option></select>
26 <select multiple="true"><option>SS</option><option>SSSS</option></select>
27 <span>SS SSSS</span>
28 </div>
29 <div>
30 <select><option>ß</option><option>ßß</option></select>
31 <select multiple="true"><option>ß</option><option>ßß</option></select>
32 <span>ß ßß</span>
33 </div>
34 <div>
35 <select><option>ß</option><option>ßß</option></select>
36 <select multiple="true"><option>ß</option><option>ßß</option></select>
37 <span>ß ßß</span>
38 </div>
39 </body>