dom/plugins/test/mochitest/test_streamatclose.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>Stream open at NPP_Destroy</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
michael@0 10 <body onload="startTest()">
michael@0 11 <script type="text/javascript">
michael@0 12 SimpleTest.waitForExplicitFinish();
michael@0 13 setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
michael@0 14
michael@0 15 var urlnotified = false;
michael@0 16
michael@0 17 var p = null;
michael@0 18
michael@0 19 function startTest() {
michael@0 20 p = document.getElementById('embedtest');
michael@0 21 ok(p.streamTest("neverending.sjs", false, null, null,
michael@0 22 function(r, t) {
michael@0 23 is(r, 2, "Stream should have failed");
michael@0 24 urlnotified = true;
michael@0 25 }, null, true), "neverending.sjs started successfully");
michael@0 26
michael@0 27 setTimeout(removePlugin, 500);
michael@0 28 }
michael@0 29
michael@0 30 function removePlugin() {
michael@0 31 document.body.removeChild(p); // Fires NPP_Destroy immediately
michael@0 32 SimpleTest.executeSoon(done);
michael@0 33 }
michael@0 34
michael@0 35 function done() {
michael@0 36 ok(urlnotified, "NPP_URLNotify should be called if streams are active at NPP_Destroy");
michael@0 37 SimpleTest.finish();
michael@0 38 }
michael@0 39
michael@0 40 </script>
michael@0 41
michael@0 42 <p id="display"></p>
michael@0 43
michael@0 44 <embed id="embedtest"
michael@0 45 style="width: 400px; height: 100px;" type="application/x-test"></embed>

mercurial