-
Notifications
You must be signed in to change notification settings - Fork 18k
website: space doesn't scroll in Firefox #8300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Milestone
Comments
For me the arrow keys don't work on page load in Firefox or Chrome. This appears to be caused by styles on the wrapping div, #mainframe: "position: fixed; bottom: 0; top:0; overflow: auto; width: 100%;". Making the main scrolling region anything but <body> also triggers nasty, slow scrolling in Firefox for Android. |
Alan, you added the mainframe div in https://code.google.com/p/go/source/detail?r=0e4df5fb7982&repo=tools My apologies for not reviewing it closely enough. We shouldn't have to wrap all the page content to add the lower box for static analysis results. Owner changed to @adonovan. |
I fixed it with a Greasemonkey script which does the following: $('#mainframe').attr('style', ''); $('#lowframe').css('position', 'fixed'); Basically just remove the style attribute from <div id="mainframe"></div> and make the lowframe fixed-position instead of absolute. I can't find any page where <div id="lowframe"></div> actually has content, though, so I can't test it thoroughly. |
https://golang.org/cl/113130044 Owner changed to @adg. Status changed to Started. |
CL https://golang.org/cl/113130044 mentions this issue. |
This issue was closed by revision golang/tools@cc0b856. Status changed to Fixed. |
Issue #8392 has been merged into this issue. |
adg
added a commit
to golang/tools
that referenced
this issue
May 11, 2015
…frame wrapper ««« CL 113130044 / c60f58db34e9 go.tools/godoc/static: remove unnecessary mainframe wrapper Fixes golang/go#8300. LGTM=adonovan R=golang-codereviews, adonovan, bradfitz CC=golang-codereviews https://golang.org/cl/113130044 »»» TBR=rsc R=golang-codereviews CC=golang-codereviews https://golang.org/cl/112510043
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by [email protected]:
The text was updated successfully, but these errors were encountered: