Mypal/dom/base/crashtests/404869-1.xul

24 lines
545 B
XML

<?xml version="1.0"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();">
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="empty"><content></content></binding>
</bindings>
<script type="text/javascript">
function boom()
{
var menupopup = document.getElementById("menupopup");
var x = SpecialPowers.wrap(document).getAnonymousNodes(menupopup)[0];
menupopup.style.MozBinding = "url('#empty')";
for (var ppp in x) {
}
}
</script>
<menupopup id="menupopup"/>
</window>