browser
browser copied to clipboard
Mouse wheel scrolling unresponsive when debugger is open and you've navigated back in time
Quick Summary: The browser window does not respond to mouse wheel scrolling if the debugger is open and you've scrolled back to a past message. You can however use the scrollbar on the right to scroll the page.
- Browser: Safari / Firefox
- Operating System: macOS 10.14.6
SSCCE
module Main exposing (main)
import Browser
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
main =
Browser.sandbox
{ init = 0
, update = \_ i -> i + 1
, view =
\_ ->
div [ style "height" "200vh" ]
[ button [ onClick identity ] [ text "click" ] ]
}
Additional Details
Does work in Chrome