blob: 48d29fc1c6e712a8e37c075184b9e06fb12bee4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<script>
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){});
var m = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menuitem");
document.body.appendChild(m);
m.setAttribute("type", "checkbox");
m.setAttribute("checked", "true");
m.removeAttribute("type");
}
</script>
</head>
<body onload="boom();"></body>
</html>
|