summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_pluginAudio.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_pluginAudio.html')
-rw-r--r--dom/base/test/file_pluginAudio.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/base/test/file_pluginAudio.html b/dom/base/test/file_pluginAudio.html
new file mode 100644
index 000000000..02ef8bd02
--- /dev/null
+++ b/dom/base/test/file_pluginAudio.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<embed type="application/x-test" width="200" height="200"></embed>
+<script>
+var plugin = document.querySelector("embed");
+onload = function() {
+ 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>