[Webkit-unassigned] [Bug 28335] HTML5 media elements do not fire waiting events correctly
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sat Aug 15 10:10:14 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=28335
--- Comment #5 from Eric Carlson <eric.carlson at apple.com> 2009-08-15 10:10:12 PDT ---
Although it isn't new to your patch, it is possible for a'seeking' event to be
fired more than once so:
// 4.8.10.10, step 9
if (m_readyState < HAVE_CURRENT_DATA)
scheduleEvent(eventNames().seekingEvent);
should be something like:
// 4.8.10.10, step 9
if (m_readyState < HAVE_CURRENT_DATA) {
if (oldState >= HAVE_CURRENT_DATA)
scheduleEvent(eventNames().seekingEvent);
}
--
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