Is there any way to scroll down on the page while Chrome is paused in debugger mode without unpausing?
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)
window.scrollTo(0, 800)