tenfourfox/layout/reftests/bugs/565819-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
457 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { color: red; }
div:last-child { color: green; }
</style>
<script>
window.onload = function() {
var r = document.getElementById("r");
r.parentNode.removeChild(r);
}
</script>
</head>
<body>
<!-- Need extra wrapper div, because whitespace inside <body> is all weird -->
<div><div>This should be green</div><div id="r"></div></div></body>
</html>