зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
324 B
HTML
19 строки
324 B
HTML
|
<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>
|