[Webkit-unassigned] [Bug 94786] MediaController play() doesn't work

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 23 19:25:46 PDT 2012


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





--- Comment #3 from Changbin Shao <changbin.shao at intel.com>  2012-08-23 19:25:45 PST ---
Thanks, it make sense for me now. While I still have questions here.
For instance, there are two video tags, with id vid1 & vid2.

var con = new MediaController();
vid1.controller = con;
vid2.controller = con;
con.play();//won't work since MediaController is blocked.
vid1.play();//won't work since MediaController is blocked(because MediaElement 2 is still paused) 
vid2.play(); //works, since MediaController is not blocked now.
con.pause();//MediaController is paused. How about its slaved elements, should be paused or not? 
con.play();//what the result should be? As the spec says: "A MediaController is a blocked media controller if the MediaController is a paused media controller...",so no video should play?

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