Is there any way to scroll down on the page while Chrome is paused in debugger mode without unpausing?
To enable scroll, enter, in console: document.body.style.overflow = 'auto'
Taken from here.
An easy workaround for the scrolling lock-up is to just jump to the console, and:
window.scrollTo(0, 800)
. (Replace 800 as needed)
If your tools are docked, you can undock it to see a bit more.
Another method:
display:none
, etc.).