<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:s.dorigotti&#64;endian.com" title="Steven Dorigotti &lt;s.dorigotti&#64;endian.com&gt;"> <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 &lt;select&gt; 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>
               &nbsp;
           </td>
           <td>s.dorigotti&#64;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 &lt;select&gt; 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 &lt;select&gt; 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&#64;endian.com" title="Steven Dorigotti &lt;s.dorigotti&#64;endian.com&gt;"> <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
&#64;&#64; -66,12 +66,11 &#64;&#64;
     }
 #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>