3

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

Ashutosh
  • 33
  • 4

2 Answers2

2

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.)

Alexander Pavlov
  • 31,598
  • 5
  • 67
  • 93
0

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).

beefeather
  • 1,040
  • 5
  • 8