mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
19 lines
457 B
HTML
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>
|