[Webkit-unassigned] [Bug 234983] [GTK] no subscribe button on opensource.com

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 11 05:06:41 PST 2022


https://bugs.webkit.org/show_bug.cgi?id=234983

Pedro Paulo <pedropaulosuzuki1 at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pedropaulosuzuki1 at gmail.com

--- Comment #2 from Pedro Paulo <pedropaulosuzuki1 at gmail.com> ---
Can confirm on Epiphany 41.3, WekbitGTK 2.34.3.

It seems the iframe this website uses doesn't get resized correctly. A quick fix is to run the script below:

```js
const iframes = Array.from(document.querySelectorAll('iframe.eloqua-embedded-bottom')); // Selects the problematic iframes

for(const iframe of iframes) {
    iframe.style.height = 'fit-content'; // Sets their heights to 'fit-content';
}
```

There probably is a miscalculation in the iframe height on Webkit, and this quick fix doesn't change that, which should be thoroughly investigated.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220111/e429f991/attachment-0001.htm>


More information about the webkit-unassigned mailing list