[Webkit-unassigned] [Bug 107868] REGRESSION(140571): Crash in ScrollingCoordinator::mainThreadScrollingReasons during Frame::createView

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 24 15:03:28 PST 2013


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





--- Comment #1 from James Robinson <jamesr at chromium.org>  2013-01-24 15:05:22 PST ---
WebCore::Frame::createView() does this:

    RefPtr<FrameView> frameView;
    if (isMainFrame) {
        frameView = FrameView::create(this, viewportSize);
        frameView->setFixedLayoutSize(fixedLayoutSize);
        frameView->setFixedVisibleContentRect(fixedVisibleContentRect);
        frameView->setUseFixedLayout(useFixedLayout);  // <--- boom!
    } else
        frameView = FrameView::create(this);

    frameView->setScrollbarModes(horizontalScrollbarMode, verticalScrollbarMode, horizontalLock, verticalLock);

    setView(frameView);


the view isn't set up

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