Console.memory equivalent in Firefox?

I wrote some good debugging tools using console.memory in Chrome, i.e.

console.memory.totalJSHeapSize 

Is there any equivalent in FireFox to access JVM heap levels at runtime in Javascript?

+6
source share
1 answer

Is this what you are looking for? I'm sure you will have to use firebug to get something like a Chrome console.

EDIT: It looks like the Firebug API can help you: http://getfirebug.com/wiki/index.php/Command_Line_API http://getfirebug.com/wiki/index.php/Console_API

+2
source

Source: https://habr.com/ru/post/903625/


All Articles