blob: 5ad4ad22b8a6e102a1c86f786695ef3fd6f54abc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script>
function init() {
document.getElementById("foopy").style.position = "absolute";
}
window.addEventListener("load", init, 0);
</script>
<box id="foopy" />
</window>
|