diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/base/test/test_pluginMutedBeforePlay.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/test/test_pluginMutedBeforePlay.html')
-rw-r--r-- | dom/base/test/test_pluginMutedBeforePlay.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/dom/base/test/test_pluginMutedBeforePlay.html b/dom/base/test/test_pluginMutedBeforePlay.html new file mode 100644 index 000000000..658875dc9 --- /dev/null +++ b/dom/base/test/test_pluginMutedBeforePlay.html @@ -0,0 +1,76 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Mute window before the plugin starts playing</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> +</head> +<body> +<pre id="test"> +</pre> +<iframe></iframe> + +<script type="application/javascript"> + +// Copied from /dom/plugins/test/mochitest/utils.js +function getTestPlugin(pluginName) { + var ph = SpecialPowers.Cc["@mozilla.org/plugin/host;1"] + .getService(SpecialPowers.Ci.nsIPluginHost); + var tags = ph.getPluginTags(); + var name = pluginName || "Test Plug-in"; + for (var tag of tags) { + if (tag.name == name) { + return tag; + } + } + + ok(false, "Could not find plugin tag with plugin name '" + name + "'"); + return null; +} +// Copied from /dom/plugins/test/mochitest/utils.js +function setTestPluginEnabledState(newEnabledState, pluginName) { + var oldEnabledState = SpecialPowers.setTestPluginEnabledState(newEnabledState, pluginName); + if (!oldEnabledState) { + return; + } + var plugin = getTestPlugin(pluginName); + while (plugin.enabledState != newEnabledState) { + // Run a nested event loop to wait for the preference change to + // propagate to the child. Yuck! + SpecialPowers.Services.tm.currentThread.processNextEvent(true); + } + SimpleTest.registerCleanupFunction(function() { + SpecialPowers.setTestPluginEnabledState(oldEnabledState, pluginName); + }); +} +setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED); + +SimpleTest.waitForExplicitFinish(); + +function runTest() { + var iframe = document.querySelector("iframe"); + iframe.src = "file_pluginAudioNonAutoStart.html"; + + function muteBeforePlay() { + ok(!iframe.contentWindow.pluginMuted(), "Plugin should not be muted"); + iframe.contentWindow.toggleMuteState(true); + + iframe.contentWindow.startAudio(); + ok(iframe.contentWindow.pluginMuted(), "Plugin should still be muted after playing"); + + iframe.contentWindow.stopAudio(); + SimpleTest.finish(); + } + + iframe.onload = function() { + ok(true, "Already load iframe."); + muteBeforePlay(); + } +} + +onload = runTest; + +</script> +</body> +</html> + |