blob: bd2129a85331a64fa264070d94b4f215e9189380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<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>
|