As reported in https://github.com/webcompat/web-bugs/issues/44780 STR: 1. On Firefox for Android sit https://sp.nicovideo.jp/ and try scrolling to the end of the page Expected: Can see the footer at the bottom of the page Actual: Can't reach the bottom of the page There is a `overflow-x` rule on both html and body, and removing either of them fixes the issue ``` html, body { overflow-x: hidden; } ``` I've also attached a reduced test case.
Bug 1598112 Comment 0 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
As reported in https://github.com/webcompat/web-bugs/issues/44780 STR: 1. On Firefox for Android visit https://sp.nicovideo.jp/ and try scrolling to the end of the page Expected: Can see the footer at the bottom of the page Actual: Can't reach the bottom of the page There is a `overflow-x` rule on both html and body, and removing either of them fixes the issue ``` html, body { overflow-x: hidden; } ``` I've also attached a reduced test case.