<html>
<head>
<base href="https://bugs.webkit.org/">
</head>
<body><span class="vcard"><a class="email" href="mailto:pedropaulosuzuki1@gmail.com" title="Pedro Paulo <pedropaulosuzuki1@gmail.com>"> <span class="fn">Pedro Paulo</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - [GTK] no subscribe button on opensource.com"
href="https://bugs.webkit.org/show_bug.cgi?id=234983">bug 234983</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>pedropaulosuzuki1@gmail.com
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - [GTK] no subscribe button on opensource.com"
href="https://bugs.webkit.org/show_bug.cgi?id=234983#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - [GTK] no subscribe button on opensource.com"
href="https://bugs.webkit.org/show_bug.cgi?id=234983">bug 234983</a>
from <span class="vcard"><a class="email" href="mailto:pedropaulosuzuki1@gmail.com" title="Pedro Paulo <pedropaulosuzuki1@gmail.com>"> <span class="fn">Pedro Paulo</span></a>
</span></b>
<pre>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.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>