webcompat / web-bugs

A place to report bugs on websites.
https://webcompat.com
Mozilla Public License 2.0
746 stars 66 forks source link

storj.io - Unable to scroll the page #42208

Closed webcompat-bot closed 5 years ago

webcompat-bot commented 5 years ago

URL: https://storj.io/

Browser / Version: Firefox Mobile 70.0 Operating System: Android Tested Another Browser: No

Problem type: Site is not usable Description: Can't scroll Steps to Reproduce: I visited the site and did nothing

Browser Configuration
  • None

From webcompat.com with ❤️

wisniewskit commented 5 years ago

I can't tap at all on the page, let alone scroll. In fact the page seems broken even in Chrome; I can't tap on anything (just scroll around). I see errors like this in the console:

11:40:09.343 Loading failed for the <script> with source “https://www.googletagmanager.com/gtm.js?id=GTM-PG37NM3&l=dataLayer”. storj.io:1:1

11:40:09.866 JSD Widget: Encountered a problem retrieving widget configuration iframe.tsx:21:16
    <anonymous> iframe.tsx:21
    callback client.js:615
    c client.js:434
    emit index.js:133
    onreadystatechange client.js:735
    nrWrapper line 1 > scriptElement:2

So clearly the page has bigger problems. But the inability to scroll is fixed by removing the overflow-x: hidden in this CSS:

html,body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

But that makes no sense given that because overflow-y is defaulting to auto, so it should be scrolling. I will need to dig in deeper here.

wisniewskit commented 5 years ago

Ah, if I get rid of this iframe, it also works:

<iframe scrolling="no" name="JSD widget" id="jsd-widget" style="height: 100%; width: 100%; position: fixed; border: 0px none; bottom: 0px; right: 0px; z-index: 2147483647;"></iframe>

In fact, I think this may be a dupe of #36342, so I've added another reduced test-case to bz1589396 and will close this as a dupe of that bug for now.

lock[bot] commented 5 years ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue at https://webcompat.com/issues/new if you are experiencing a similar problem.