summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/table-row-group-to-inline.html
blob: e7a68f52283081a2cdeb15877ab1e09c5c2a7d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>