[Webkit-unassigned] [Bug 169324] LayoutTest media/track/media-element-enqueue-event-crash.html is a flaky failure

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 8 06:28:06 PST 2017


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

--- Comment #3 from Antoine Quint <graouts at apple.com> ---
So I've managed to reproduce the icon load issue here and as far as I can tell the icon loading fails because we can't get a Page reference here:

String MediaControlsHost::base64StringForIconAndPlatform(const String& iconName, const String& platform) const
{
    Page* page = m_mediaElement->document().page();
    if (!page) {
        return emptyString();
    return RenderTheme::themeForPage(page)->mediaControlsBase64StringForIconAndPlatform(iconName, platform);
}

So we don't event attempt to load the icon and return an empty string. I have no idea why the Page may not be available at this stage.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170308/a531ba41/attachment.html>


More information about the webkit-unassigned mailing list