Bug 32650 - [GTK] setRate() doesn't honor the m_muted
Summary: [GTK] setRate() doesn't honor the m_muted
Status: RESOLVED WORKSFORME
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC OS X 10.5
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-17 02:42 PST by Philippe Normand
Modified: 2010-02-18 07:13 PST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Philippe Normand 2009-12-17 02:42:46 PST
Current implementation of setRate will unmute the volume if rate is 1.0, whatever the m_muted value is. This is not nice as it breaks this sample js code:

video = createElement ("video"); 
video.mute = true; 
video.src = "bla.mp4";
video.play();
Comment 1 Philippe Normand 2010-02-18 07:13:56 PST
I can't reproduce this one anymore