mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
476 B
HTML
20 lines
476 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div { color: red; }
|
|
div:last-child { color: green; }
|
|
</style>
|
|
<script>
|
|
window.onload = function() {
|
|
dump('aaa');
|
|
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>
|