Backed out 4 changesets (bug 1861985, bug 1860958, bug 1865364) for causing bustage...
[gecko.git] / layout / tables / reftests / dynamic-text-indent-table-cell.html
blobc49271a61fc8a2a81553dfe5ece4175207254154
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 = "";
18 </script>
19 </html>