blob: 2d20fdb64f59bbe9c8c2316bc0fb385872f2e280 [file] [log] [blame]
<!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>