tenfourfox/layout/reftests/generated-content/dynamic-table-cell-01a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
257 B
HTML

<!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>