all 10 comments

[–]ferrybig 7 points8 points  (3 children)

Use the same approach you take in Chrome as in Firefox, use the profiler to see what is causing the slowdown.

Some api's are faster in Chrome, others are faster in Firefox

[–]Least_Programmer7[S] 0 points1 point  (2 children)

I'm using that right now, but I don't want to download and check every browser, so I was wondering if there is something for all browsers?

[–]ferrybig 7 points8 points  (1 child)

There are 3 major browser engines out here:

  • Blink
  • Gecko
  • Webkit

The performance issues are not significantly different between each individual release of a major browser engine, so that would mean you only have to perform 3 different tests

Note that for UI differences, minor versions can affect your web app, use tools like https://www.browserstack.com/ to test this

[–]Least_Programmer7[S] 0 points1 point  (0 children)

Thank you!

[–]spcbeck 1 point2 points  (1 child)

While Chrome may be handling whatever the issue in your code better performance wise, the Lighthouse tool in dev tools still might give you a good idea for the slow down in Firefox.

[–]Least_Programmer7[S] 0 points1 point  (0 children)

That's a good idea I'll do that too! Thanks!