Source code
Revision control
Copy as Markdown
Other Tools
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script>↩
function init() {
document.getElementById("foopy").style.display = "block";
document.getElementById("foopy").style.position = "absolute";
}↩
window.addEventListener("load", init, 0);↩
</script>
<box id="foopy" />
</window>