mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 03:13:09 +09:00
18 lines
457 B
HTML
18 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>
|