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/plugins/test/mochitest/test_bug479979.xul | |
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/plugins/test/mochitest/test_bug479979.xul')
-rw-r--r-- | dom/plugins/test/mochitest/test_bug479979.xul | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dom/plugins/test/mochitest/test_bug479979.xul b/dom/plugins/test/mochitest/test_bug479979.xul new file mode 100644 index 000000000..1f295cbeb --- /dev/null +++ b/dom/plugins/test/mochitest/test_bug479979.xul @@ -0,0 +1,38 @@ +<?xml version="1.0"?> +<?xml-stylesheet href="chrome://global/skin" type="text/css"?> +<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" + type="text/css"?> +<window title="NPAPI Set Undefined Value Test" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <script type="application/javascript" + src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" /> + <script type="application/javascript" src="plugin-utils.js"></script> +<body xmlns="http://www.w3.org/1999/xhtml" onload="runTests()"> +<script class="testbody" type="application/javascript"> +<![CDATA[ +SimpleTest.waitForExplicitFinish(); +setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED); + +function runTests() { + var pluginElement1 = document.getElementById("plugin1"); + + var rv = true; // we want !true from the test plugin + var exceptionThrown = false; + try { + rv = pluginElement1.setUndefinedValueTest(); + } catch (e) { + exceptionThrown = true; + } + is(exceptionThrown, false, "Exception thrown setting undefined variable."); + is(rv, false, "Setting undefined variable succeeded."); + + // give the UI a chance to settle with the current enabled plugin state + // before we finish the test and reset the state to disabled. Otherwise + // the UI shows the plugin infobar! + SimpleTest.executeSoon(SimpleTest.finish); +} +]]> +</script> +<embed id="plugin1" type="application/x-test" width="300" height="300"></embed> +</body> +</window> |