[Webkit-unassigned] [Bug 209684] ASSERTION FAILED: m_wrapper on imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/ready-states/autoplay.html

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 30 17:10:28 PDT 2020


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

--- Comment #5 from Chris Dumez <cdumez at apple.com> ---
HTMLMediaElement has a single MainThreadGenericEventQueue data member: m_asyncEventQueue.

However, hasPendingActivity() already makes sure it does not have pending events:
bool HTMLMediaElement::hasPendingActivity() const
{
    return (hasAudio() && isPlaying()) || m_asyncEventQueue->hasPendingEvents() || m_playbackTargetIsWirelessQueue.hasPendingTasks() || m_creatingControls;
}

Therefore, it must be some other MainThreadGenericEventQueue which dispatches events on the HTMLMediaElement?

-- 
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/20200331/222fba1f/attachment.htm>


More information about the webkit-unassigned mailing list