blob: fe25de3660ba39f60d4c61366e4f539f22ce0a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<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>
|