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_crashing.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/plugins/test/mochitest/test_crashing.html')
-rw-r--r-- | dom/plugins/test/mochitest/test_crashing.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dom/plugins/test/mochitest/test_crashing.html b/dom/plugins/test/mochitest/test_crashing.html new file mode 100644 index 000000000..eac6e42be --- /dev/null +++ b/dom/plugins/test/mochitest/test_crashing.html @@ -0,0 +1,62 @@ +<head> + <title>Plugin crashing</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="application/javascript" src="plugin-utils.js"></script> + +<body> + <script class="testbody" type="application/javascript"> + SimpleTest.waitForExplicitFinish(); + setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED); + + window.frameLoaded = function frameLoaded_toCrash() { + SimpleTest.expectChildProcessCrash(); + + var iframe = document.getElementById('iframe1'); + var p = iframe.contentDocument.getElementById('plugin1'); + + p.setColor("FFFF00FF"); + + try { + p.crash(); + ok(false, "p.crash() should throw an exception"); + } + catch (e) { + ok(true, "p.crash() should throw an exception"); + } + + // Create random identifiers to test bug 560213 + for (var i = 0; i < 5; ++i) { + var r = 'rid_' + Math.floor(Math.random() * 10000 + 1); + try { + ok(!(r in p), "unknown identifier in crashed plugin should fail silently"); + } + catch (e) { + ok(false, "unknown identifier check threw"); + } + } + + try { + p.setColor("FFFF0000"); + ok(false, "p.setColor should throw after the plugin crashes"); + } + catch (e) { + ok(true, "p.setColor should throw after the plugin crashes"); + } + + window.frameLoaded = function reloaded() { + var p = iframe.contentDocument.getElementById('plugin1'); + try { + p.setColor('FF00FF00'); + ok(true, "Reloading worked"); + } + catch (e) { + ok(false, "Reloading didn't give us a usable plugin"); + } + SimpleTest.finish(); + } + + iframe.contentWindow.location.reload(); + } + + </script> + <iframe id="iframe1" src="crashing_subpage.html" width="600" height="600"></iframe> |