Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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> |