This commit is contained in:
Jesse Ruderman 2010-11-06 13:30:32 -07:00
Родитель b2e5083601
Коммит bac8c7b2dd
2 изменённых файлов: 21 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,20 @@
<html>
<head>
<script>
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){}, false);
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>

Просмотреть файл

@ -75,3 +75,4 @@ asserts(1) load 538308-1.xul
load 557174-1.xml
load menulist-focused.xhtml
load 564705-1.xul
load 583957-1.html