I have a page where a large number of DOM elements are animated. This mostly works on modern hardware and software, but I worry that it may be too sluggish on older computers with slow javascript interpreters.
What I would like to do is to get some information about the performance of the DOM and disable some of the animations if this is under a certain threshold. A naif way could be by adding 10000 or so transparent elements and removing them and measuring the time needed. Before going to implement this, I would like to know whether something of this kind, maybe more refined, already exists.
Do you know of any tool that gives a resonable measure of the DOM performance?