Visit Mozilla.org

User:Mook:Code Snippets

From MDC

These are code snippets not polished enough / suitable for the main Code Snippets listing.

[edit] nsIDOMWindow from nsIChannel

from MozillaZine forums; suitable for things like http-on-modify-request

function getDOMWindow ( /* in nsIChannel */ aChannel ) {
  var requestor = aChannel.notificationCallbacks;
  var win = requestor.getInterface(Components.interfaces.nsIDOMWindow);
}