Since its inception few years back, Chrome has become a de-facto IDE for web development. I\'ve been using it\'s Canary(Version 28.0.1464.0) channel for quite a bit and been
For me the only solution that worked was:
None of the above worked.
In Chrome version 29.0.1547.76 m, it auto-scrolls when you undock the console. It stops auto-scrolling if you click on the console, then you'll have to clear the console before auto-scroll will be ready to start again.
The "Undock into separate window." button is the bottom-left most button of the console.
Logging of HTML elements into the console makes the console view lose the last console message.
Instead of doing something like this:
console.log("Some logging message:", html_element)
try this (wrapped the messages with brackets)
console.log(["Some logging message:", html_element])
For me I've noticed that the autoscroll stopped when the console showed a warning so I've filtered out the warnings and all is good:
I found this solution in Chrome 49+
Go Dev-tools/ Settings /
"Console tab"
x Preserve log upon navigation.
Done!
Clearing the console and scrolling the bar down to the bottom didn't work for me.
The problem was that I had zoomed out DevTools.
If I hit Ctrl-0
(zero) on Windows, or Cmd-0
(zero) on OS X, on DevTools to restore the default font-size, then auto-scroll to bottom worked as expected.
Thanks to this guy for pointing it out: http://code.google.com/p/chromium/issues/detail?id=161646#c5