dynamic-text-indent.html (322B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <button>Some text</button> 4 <script> 5 onload = function() { 6 var obj = document.querySelector("button"); 7 window.w = obj.getBoundingClientRect().width; 8 obj.style.textIndent = "50px"; 9 document.documentElement.className = ""; 10 } 11 </script> 12 </html>