https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f121ca1ea1bc090de53d5b39fcfe0afb02c360e6 authored by Aki Sasaki on 28 April 2014, 19:28:13 UTC
tagging B2G_1_1_0_hd for mergeday. r=a=mergeday DONTBUILD
Tip revision: f121ca1
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 = document.getAnonymousNodes(menupopup)[0];
  menupopup.style.MozBinding = "url('#empty')";
  for (var ppp in x) {
  }
}

</script>

<menupopup id="menupopup"/>

</window>
back to top