Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
| 2 select { | |
| 3 width: 168px; | |
| 4 padding: 5px; | |
| 5 font-size: 16px; | |
| 6 height: 34px; | |
| 7 background: transparent; | |
| 8 } | |
| 9 </style> | |
| 10 <body> | |
| 11 <p>The background should be yellow.</p> | |
| 12 <select id = "select"> | |
| 13 <option>CA</option> | |
| 14 <option>TX</option> | |
| 15 </select> | |
| 16 </body> | |
| 17 <script> | |
| 18 var select = document.getElementById('select'); | |
| 19 if (window.internals) | |
| 20 window.internals.setAutofilled(select, true); | |
| 21 </script> | |
| OLD | NEW |