mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
275 B
Plaintext
18 lines
275 B
Plaintext
|
<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>
|