mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
20 lines
302 B
HTML
20 lines
302 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var z = document.createElementNS(XUL_NS, "window");
|
||
|
document.body.appendChild(z);
|
||
|
z.setAttribute("hidechrome", "true");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<body onload="boom();">
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|