summaryrefslogtreecommitdiffstats
path: root/widget/tests/utils.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-20 11:08:15 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:48:40 +0200
commitee6595e6deca4bb6d9008fb1495c5da7692a2b33 (patch)
tree95602885a43f6dc556dd6d27fc2d387275ae4816 /widget/tests/utils.js
parent201be4d8fcd78484ad2132d16fd5c06448a41aca (diff)
downloadUXP-ee6595e6deca4bb6d9008fb1495c5da7692a2b33.tar
UXP-ee6595e6deca4bb6d9008fb1495c5da7692a2b33.tar.gz
UXP-ee6595e6deca4bb6d9008fb1495c5da7692a2b33.tar.lz
UXP-ee6595e6deca4bb6d9008fb1495c5da7692a2b33.tar.xz
UXP-ee6595e6deca4bb6d9008fb1495c5da7692a2b33.zip
Issue #439 - Remove tests from widget/
Diffstat (limited to 'widget/tests/utils.js')
-rw-r--r--widget/tests/utils.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/widget/tests/utils.js b/widget/tests/utils.js
deleted file mode 100644
index 3796c7d2b..000000000
--- a/widget/tests/utils.js
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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;
-}
-
-// call this to set the test plugin(s) initially expected enabled state.
-// it will automatically be reset to it's previous value after the test
-// ends
-function setTestPluginEnabledState(newEnabledState, pluginName) {
- var plugin = getTestPlugin(pluginName);
- var oldEnabledState = plugin.enabledState;
- plugin.enabledState = newEnabledState;
- SimpleTest.registerCleanupFunction(function() {
- getTestPlugin(pluginName).enabledState = oldEnabledState;
- });
-}