1375315-11.html (314B)
1 <!DOCTYPE html> 2 <script> 3 onload = function() { 4 var height = document.body.offsetHeight; // Flush layout 5 document.querySelector("select").style.color = "green"; 6 } 7 </script> 8 <select style="display: list-item; list-style-position: inside; color: red"> 9 <option>Bullets should be green</option> 10 </select>