2010-12-23 08:30:44 -08:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Stream open at NPP_Destroy</title>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
href="/tests/SimpleTest/test.css">
|
|
|
|
|
|
|
|
<body onload="startTest()">
|
|
|
|
<p id="display"></p>
|
|
|
|
|
|
|
|
<embed id="embedtest"
|
|
|
|
style="width: 400px; height: 100px;" type="application/x-test"></embed>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
var urlnotified = false;
|
|
|
|
|
|
|
|
var p = document.getElementById('embedtest');
|
|
|
|
|
|
|
|
function startTest() {
|
|
|
|
ok(p.streamTest("neverending.sjs", false, null,
|
|
|
|
function(r, t) {
|
|
|
|
is(r, 2, "Stream should have failed");
|
|
|
|
urlnotified = true;
|
|
|
|
}), "neverending.sjs started successfully");
|
|
|
|
|
|
|
|
setTimeout(removePlugin, 500);
|
|
|
|
}
|
|
|
|
|
|
|
|
function removePlugin() {
|
|
|
|
document.body.removeChild(p); // Fires NPP_Destroy immediately
|
|
|
|
SimpleTest.executeSoon(done);
|
|
|
|
}
|
|
|
|
|
|
|
|
function done() {
|
|
|
|
ok(urlnotified, "NPP_URLNotify should be called if streams are active at NPP_Destroy");
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|