[Webkit-unassigned] [Bug 134097] REGRESSION(r170163): It made all performance tests crash on EFL

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jun 20 01:53:35 PDT 2014


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





--- Comment #1 from Gyuyoung Kim <gyuyoung.kim at webkit.org>  2014-06-20 01:53:55 PST ---
AFAIK, m_mainFrame is null in WebPage::didCompletePageTransition() since r170163. So, if we simply add a null checking code as below, it looks EFL port is fine. However, we need to investigate r170163 further to sync with EFL port.


void WebPage::didCompletePageTransition()
{
#if USE(TILED_BACKING_STORE)
    if (m_mainFrame && m_mainFrame->coreFrame()->view()->delegatesScrolling())
        // Wait until the UI process sent us the visible rect it wants rendered.
        send(Messages::WebPageProxy::PageTransitionViewportReady());
    else
#endif

    m_drawingArea->setLayerTreeStateIsFrozen(false);
}

-- 
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