1. create a notebook and run a cell that will continuously update over time ``` import time for i in range(200): time.sleep(.3) print('string ' * 100) print(i) ``` 2. try to drag the scrollbar while output is still being written :bug: scrollbar is not held and returns to the bottom