blob: e7a68f52283081a2cdeb15877ab1e09c5c2a7d7e [file] [log] [blame]
<style>
.first:before {
display: table-row-group;
content: "hello";
}
.second:before {
display: inline;
content: "hello";
}
</style>
<span>This test passes if it does not crash, and if we successfully destroy the table-section generated content.</span>
<br/>
<ul>
<li class="first" id="me">test</li>
</ul>
<script>
var thing = document.getElementById("me");
thing.className = "second";
</script>