mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-03 20:30:00 +00:00
12 lines
278 B
HTML
12 lines
278 B
HTML
<?xml version="1.0"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<body onload="test()">
|
|
<script>
|
|
function test() {
|
|
document.body.innerHTML = "Foobar";
|
|
}
|
|
document.addEventListener("DOMNodeRemoved", function() {});
|
|
</script>
|
|
</body>
|
|
</html>
|