https://github.com/mozilla/gecko-dev
Raw File
Tip revision: dd2f462a971fdf6a72e7c3da774a4e4a5608ebfa authored by B2G Bumper Bot on 09 June 2014, 23:03:54 UTC
Bumping manifests a=b2g-bump
Tip revision: dd2f462
404869-1.xul
<?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>
back to top