summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/selectors/empty-element-made-non-empty.html
blob: 2d20fdb64f59bbe9c8c2316bc0fb385872f2e280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<head>
<style>
    p { background-color: green; width: 100px; height: 100px; }
    p:empty { display: none; }
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
window.onload = function() {
    document.getElementById('id').appendChild(document.createTextNode('TEST PASSED'));
};
</script>
</head>
<body>
<p id="id"></p>
</body>