blob: a760783c3fc5d02a57f2d3cf328546bc145f3614 [file] [log] [blame]
<!DOCTYPE html>
<body>
<style>
select {
width: 168px;
padding: 5px;
font-size: 16px;
height: 34px;
background: transparent;
}
</style>
<p>The background should be blue.</p>
<select id = "select">
<option>CA</option>
<option>TX</option>
</select>
<script>
var select = document.getElementById('select');
if (window.internals)
internals.setAutofilled(select, true);
</script>
</body>