blob: b2fcae89f6bb9d2f68e3e2a1ce20cf9f73ac0a87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<head>
<style id="ss" type="text/css">
span, popupgroup { display: table; position: absolute; }
</style>
<script type="text/javascript">
function boom()
{
var ss = document.getElementById("ss");
ss.removeChild(ss.firstChild);
}
</script>
</head>
<body onload="boom();">
<span><xul:popupgroup/></span>
</body>
</html>
|