Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select-autofilled.html
blob80f2ce9e528f8c7121c1e6c5e392d28f3f31d695
1 <!DOCTYPE html>
2 <body>
3 <style>
4 select {
5 width: 168px;
6 padding: 5px;
7 font-size: 16px;
8 height: 34px;
9 background: transparent;
11 </style>
12 <script>
13 if (window.testRunner)
14 testRunner.setUseMockTheme(false);
15 </script>
16 <p>The background should be yellow.</p>
17 <select id = "select">
18 <option>CA</option>
19 <option>TX</option>
20 </select>
21 <script>
22 var select = document.getElementById('select');
23 if (window.internals)
24 window.internals.setAutofilled(select, true);
25 </script>
26 </body>