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>