Does anyone know what the limit is on the maximum number of breakpoints that can be set with Google Chrome's Web Inspector? Thanks.

link|improve this question
Is it for general knowledge, or have you encountered a problem already? – Saeed Neamati Nov 22 '11 at 5:19
I haven't encountered a problem yet, but want to be sure that it'll be able to handle several thousand breakpoints in the future. – Ashutosh Nov 22 '11 at 5:35
Several thousand?! Why would you need that many breakpoints? – kol Nov 22 '11 at 9:38
feedback

2 Answers

up vote 2 down vote accepted

The number of breakpoints is only limited by your hardware resources (memory for storing them and CPU for quickly handling this lot of DOM elements.)

link|improve this answer
feedback

As far as I know there is no explicit limit for the number of breakpoints. However you should expect that some algorithms are not well optimized for a large number of breakpoints, e.g. some internal searches may well be O(n).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.