mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 08:57:34 +09:00
17 lines
272 B
XML
17 lines
272 B
XML
<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>
|