summaryrefslogtreecommitdiffstats
path: root/layout/reftests/generated-content/dynamic-table-cell-01a.html
blob: f0bd6b119dc0536c1103edfcd37816a02a9e7f49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<style>
.test::after {
    content:"::after content";
}
</style>

<table>
  <tr>
    <td>
      Cell contents
    </td>
  </tr>
</table>

<script>
  var td = document.querySelector("td");
  td.offsetWidth;
  td.className = "test";
</script>