Created
May 24, 2013 15:40
-
-
Save svagionitis/5644411 to your computer and use it in GitHub Desktop.
Set mute
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| title Set mute | |
| participant JavaScript | |
| participant WebKitPlayer | |
| participant IrisPlayer | |
| note right of WebKitPlayer: readyState >= HAVE_METADATA | |
| JavaScript ->+ WebKitPlayer: muted(true) | |
| WebKitPlayer ->+ IrisPlayer: sesnSetAudioMute(true) | |
| IrisPlayer -->- WebKitPlayer: | |
| WebKitPlayer-->- JavaScript: | |
| WebKitPlayer -> JavaScript: volumechange | |
| JavaScript ->+ WebKitPlayer: muted(false) | |
| WebKitPlayer ->+ IrisPlayer: sesnSetAudioMute(false) | |
| IrisPlayer -->- WebKitPlayer: | |
| WebKitPlayer-->- JavaScript: | |
| WebKitPlayer -> JavaScript: volumechange |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment