Why is a <select> dropdown element (the arrow) sometimes white and sometimes gray?
I have this sample code:
<html>
<body>
<select>
<option>1</option>
</select>
</body>
</html>
When I'm testing the code as a .html page in IE 9, the result looks like this:

And when I'm testing the code with JSFiddle in IE 9, the result looks like this:

Why? And how can i force the select to be "gray"?
Fiddle Example: http://jsfiddle.net/VuSWz/
:P– Šime Vidas May 29 '12 at 13:05