Maximum number of breakpoints in Chrome?

孤者浪人 提交于 2021-02-07 20:27:17

问题


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


回答1:


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




回答2:


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



来源:https://stackoverflow.com/questions/8222285/maximum-number-of-breakpoints-in-chrome

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!