mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
409 B
XML
24 lines
409 B
XML
<window onload="boom();" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var p = document.getElementById("p");
|
|
|
|
document.addEventListener("DOMAttrModified", removeP, true);
|
|
|
|
p.removeAttribute("mode");
|
|
|
|
function removeP()
|
|
{
|
|
document.documentElement.removeChild(p);
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<progressmeter id="p" mode="determined" />
|
|
|
|
</window>
|