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