Reputation: 857
I've written some nice debugging tools using console.memory in Chrome, i.e.
console.memory.totalJSHeapSize
Is there any equivalent in FireFox to gain access to the JVM heap levels at runtime in Javascript?
Upvotes: 7
Views: 2084
Reputation: 686
Is this what you're looking for? I'm pretty sure you will have to leverage firebug to get anything like Chrome's console.
EDIT: It looks like firebug's API might help you out: http://getfirebug.com/wiki/index.php/Command_Line_API http://getfirebug.com/wiki/index.php/Console_API
Upvotes: 2