tenfourfox/layout/reftests/generated-content/dynamic-table-cell-01a.html

21 lines
257 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>