Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

console.memory equivalent in Firefox?

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?

like image 570
martyman Avatar asked Dec 12 '11 20:12

martyman


1 Answers

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

like image 150
Ian Link Avatar answered Sep 24 '22 11:09

Ian Link