<html>
<head>
<base href="https://bugs.webkit.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:s.dorigotti@endian.com" title="Steven Dorigotti <s.dorigotti@endian.com>"> <span class="fn">Steven Dorigotti</span></a>
</span> changed
<a class="bz_bug_link
bz_status_UNCONFIRMED "
title="UNCONFIRMED - crash near WebCore::QtFallbackWebPopupCombo::hidePopup when dismissing a <select> before it is fully rendered (Mac only)"
href="https://bugs.webkit.org/show_bug.cgi?id=71035">bug 71035</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>s.dorigotti@endian.com
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_UNCONFIRMED "
title="UNCONFIRMED - crash near WebCore::QtFallbackWebPopupCombo::hidePopup when dismissing a <select> before it is fully rendered (Mac only)"
href="https://bugs.webkit.org/show_bug.cgi?id=71035#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_UNCONFIRMED "
title="UNCONFIRMED - crash near WebCore::QtFallbackWebPopupCombo::hidePopup when dismissing a <select> before it is fully rendered (Mac only)"
href="https://bugs.webkit.org/show_bug.cgi?id=71035">bug 71035</a>
from <span class="vcard"><a class="email" href="mailto:s.dorigotti@endian.com" title="Steven Dorigotti <s.dorigotti@endian.com>"> <span class="fn">Steven Dorigotti</span></a>
</span></b>
<pre>I can confirm both the bug and the solution provided by Paul Sturm. It doesn't seem to have noticeable side effects.
cheers,
Steven
ps: this is the patch I apply to Qt 4.8.6:
--- qt.orig/qt-everywhere-opensource-src-4.8.6/src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp
+++ qt/qt-everywhere-opensource-src-4.8.6/src/3rdparty/webkit/Source/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp
@@ -66,12 +66,11 @@
}
#endif // QT_NO_IM
- QComboBox::hidePopup();
-
if (!m_ownerPopup.m_popupVisible)
return;
m_ownerPopup.m_popupVisible = false;
+ QComboBox::hidePopup();
emit m_ownerPopup.didHide();
m_ownerPopup.destroyPopup();
}</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>