Skip to content

Instantly share code, notes, and snippets.

@joewalker
Forked from anonymous/gist:2661058
Created June 17, 2012 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joewalker/2944434 to your computer and use it in GitHub Desktop.
Save joewalker/2944434 to your computer and use it in GitHub Desktop.
Micro Debugger Demo
var debuggr = new Debugger(gBrowser.selectedBrowser.contentWindow);
debuggr.onEnterFrame = function(frame) {
alert(frame.callee.name + "(" + frame.arguments.join(", ") + ")");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment