tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

dynamic-text-indent-table-cell.html (390B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <table>
      4    <tr>
      5      <td>
      6        Some text
      7      </td>
      8    </tr>
      9  </table>
     10  <script>
     11    onload = function() {
     12      var td = document.querySelector("td");
     13      // Make sure layout has happened.
     14      var width = td.offsetWidth;
     15      td.style.textIndent = "50px";
     16      document.documentElement.className = "";
     17    }
     18  </script>
     19 </html>