summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/first-child-display-change-inverse.html
blob: b652fd0ba8371563adc154ba315b8c5fabaa03ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<style>
.display-when-first-child { display: none; }
.display-when-first-child:first-child { display: block; }
</style>
<div class="display-when-first-child">FAIL</div>
<script>
var test = document.createElement('div');
document.body.insertBefore(test, document.body.firstChild);
if (document.body.innerText.indexOf('FAIL') < 0)
    test.innerText = 'PASS';
if (window.testRunner)
    testRunner.dumpAsText();
</script>