[Webkit-unassigned] [Bug 60881] [Qt]REGRESSION(86499): GC or Inspector BUG
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri May 20 07:11:27 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60881
--- Comment #8 from Zoltan Herczeg <zherczeg at webkit.org> 2011-05-20 07:11:27 PST ---
Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
bool InspectorClientQt::sendMessageToFrontend(const String& message)
{
#if ENABLE(INSPECTOR)
if (m_inspectedWebPage->d->inspector->d->remoteFrontend) {
// Code not enters here.
}
if (!m_frontendWebPage) // <--- EARLY RETURN HERE!
return false;
Page* frontendPage = QWebPagePrivate::core(m_frontendWebPage);
return doDispatchMessageOnFrontendPage(frontendPage, message);
#else
return false;
#endif
}
If I run it alone, the m_frontendWebPage does exists. When I run it with run-layout-tests, it does not exists, and there is an early return.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list