Jan Honza Odvarko
unread,Sep 24, 2011, 11:16:21 AM9/24/11You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Firefox nightly (from Friday) breaks Firebug since jsdIValue.jsParent
is null all the time.
Firebug has been using jsParent to get the parent window (outer most
scope) to see where a debugger break happened.
Firebug uses iteration as follows:
var frame = // the current frame passed into a JSD hook
var scope = frame.scope;
while (scope.jsParent)
scope = scope.jsParent;
Is it a known bug?
If jsParent has been abandoned, how can Firebug get the parent window
(or sandbox) from a frame?
Honza