summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dynamic/last-child-display-none.html
blob: e0246c51e88c4bac9be8b71db9959677684765e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<style>
p:last-child {
    display:none;
}
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
</script>
<p>You should see the word 'PASS' below:</p>
<div id="container">
    <p>PASS</p>
</div>
<script>
container.offsetTop;
container.appendChild(document.createElement("p"));
</script>