dynamic-text-indent-2.html (399B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <fieldset style="column-count: 2; width: 200px; border: none"> 4 This is some text that is too long and it will overflow. 5 </fieldset> 6 <script> 7 onload = function() { 8 var f = document.querySelector("fieldset"); 9 window.w = f.offsetWidth; 10 f.style.textIndent = "50px"; 11 document.documentElement.className = ""; 12 } 13 </script> 14 </html>