dynamic-text-indent-1.html (326B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <select> 4 <option selected>Text<option> 5 </select> 6 <script> 7 onload = function() { 8 var s = document.querySelector("select"); 9 window.w = s.offsetWidth; 10 s.style.textIndent = "15px"; 11 document.documentElement.className = ""; 12 } 13 </script> 14 </html>