mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
797bf55dc0
MozReview-Commit-ID: 4fRCzlJXK41
26 lines
592 B
HTML
26 lines
592 B
HTML
<!DOCTYPE html>
|
|
<embed type="application/x-test" width="200" height="200"></embed>
|
|
<script>
|
|
var plugin = document.querySelector("embed");
|
|
|
|
function startAudio() {
|
|
plugin.startAudioPlayback();
|
|
}
|
|
|
|
function stopAudio() {
|
|
plugin.stopAudioPlayback();
|
|
}
|
|
|
|
function pluginMuted() {
|
|
return plugin.audioMuted();
|
|
}
|
|
|
|
function toggleMuteState(muted) {
|
|
var Ci = SpecialPowers.Ci;
|
|
var utils = SpecialPowers.wrap(window).top
|
|
.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIDOMWindowUtils);
|
|
utils.audioMuted = muted;
|
|
}
|
|
</script>
|