dom/plugins/test/mochitest/test_npruntime_npnsetexception.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <html>
michael@0 2 <head>
michael@0 3 <title>NPN_SetException Tests</title>
michael@0 4 <script type="text/javascript"
michael@0 5 src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 6 <script type="text/javascript" src="utils.js"></script>
michael@0 7 <link rel="stylesheet" type="text/css"
michael@0 8 href="/tests/SimpleTest/test.css" />
michael@0 9 </head>
michael@0 10 <body onload="runTests()">
michael@0 11 <script class="testbody" type="application/javascript">
michael@0 12 SimpleTest.waitForExplicitFinish();
michael@0 13 setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
michael@0 14
michael@0 15 function runTests() {
michael@0 16 // test a single exception thrown in scriptable invoke
michael@0 17 var plugin = document.getElementById("plugin1");
michael@0 18 plugin.throwExceptionNextInvoke();
michael@0 19 try {
michael@0 20 plugin.npnInvokeTest("badFunction");
michael@0 21 ok(false, "exception not thrown");
michael@0 22 }
michael@0 23 catch (e) {
michael@0 24 is(e, "badFunction", "wrong exception thrown");
michael@0 25 }
michael@0 26
michael@0 27 // test multiple exceptions thrown in scriptable invokedefault
michael@0 28 plugin.throwExceptionNextInvoke();
michael@0 29 try {
michael@0 30 plugin("first exception", "second exception");
michael@0 31 ok(false, "exception not thrown");
michael@0 32 }
michael@0 33 catch (e) {
michael@0 34 is(e, "second exception", "wrong exception thrown");
michael@0 35 }
michael@0 36
michael@0 37 // test calling exception with NULL message
michael@0 38 plugin.throwExceptionNextInvoke();
michael@0 39 try {
michael@0 40 plugin();
michael@0 41 ok(false, "exception not thrown");
michael@0 42 }
michael@0 43 catch (e) {
michael@0 44 is(e.message, "Error calling method on NPObject!", "wrong exception thrown");
michael@0 45 }
michael@0 46
michael@0 47 SimpleTest.finish();
michael@0 48 }
michael@0 49 </script>
michael@0 50
michael@0 51 <p id="display"></p>
michael@0 52
michael@0 53 <embed id="plugin1" type="application/x-test" width="400" height="100">
michael@0 54 </embed>
michael@0 55
michael@0 56 <div id="verbose">
michael@0 57 </div>
michael@0 58 </body>
michael@0 59 </html>

mercurial