On Dec 4, 5:18 pm, Steven Roussey <[email protected]> wrote: > John, I get: > > [Exception... "Security Manager vetoed action" nsresult: "0x80570027 > (NS_ERROR_XPC_SECURITY_MANAGER_VETO)" location: "JS frame :: > chrome://firebug/content/debugger.js :: anonymous :: line 71" data: > no]
These messages are not actually useful. No one understands what causes them. The line number information is bogus. In this case the line is a call to jsdIStackframe.eval(). I'm surprised because I thought this would only be used if the developer stopped on a breakpoint. > > Might be something about the nature of $$? Or not. I have no idea. We pretty much have to walk through the code line by line to puzzle out why this does not work. jjb > > -steve-- > > On Dec 3, 11:20 pm, kirilloid <[email protected]> wrote: > > > New console doesn't display any of attributes from element > > > Example:http://t4.answers.travian.de/index.php?aid=238#go2answer > > > // work > > $$(".result h2+ul li, .result h2+p+ul li").map(function(elt){return > > elt}); > > > // doesn't work > > $$(".result h2+ul li, .result h2+p+ul li").map(function(elt){ return > > elt.innerHTML }); > > $$(".result h2+ul li, .result h2+p+ul li").map(function(elt){ return > > elt.get("text") }); > > $$(".result h2+ul li, .result h2+p+ul li").map(function(elt){ return > > elt.textContent }); > > > It just returns nothing to console. -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
