[Webkit-unassigned] [Bug 208339] Web process crashes with UI-side compositing on macOS

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 27 13:58:46 PST 2020


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

--- Comment #1 from Simon Fraser (smfr) <simon.fraser at apple.com> ---
WebProcess::createWebPage() is in WebPage::create() which hasn't yet set the value in the m_pageMap:

    if (result.isNewEntry) {
        ASSERT(!result.iterator->value);
        result.iterator->value = WebPage::create(pageID, WTFMove(parameters));

then WebProcess::updatePageScreenProperties() tries to iterate the map:

    bool allPagesAreOnHDRScreens = allOf(m_pageMap.values(), [] (auto& page) {
        return screenSupportsHighDynamicRange(page->mainFrameView());
    });

and gets a null page.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200227/d6214763/attachment.htm>


More information about the webkit-unassigned mailing list