2010-02-26 11:07:58 -08:00
|
|
|
<head>
|
|
|
|
<title>Test for correct async delivery of large streams, bug
|
|
|
|
532208</title>
|
|
|
|
|
|
|
|
<script type="application/javascript"
|
2010-08-24 10:29:34 -07:00
|
|
|
src="/MochiKit/packed.js"></script>
|
2010-02-26 11:07:58 -08:00
|
|
|
<script type="application/javascript"
|
2010-08-24 10:29:34 -07:00
|
|
|
src="/tests/SimpleTest/SimpleTest.js"></script>
|
2010-02-26 11:07:58 -08:00
|
|
|
|
|
|
|
<body onload="setTimeout(runTests, 2000)">
|
|
|
|
<embed id="plugin1" type="application/x-test" width="400"
|
|
|
|
height="400" src="large-pic.jpg" functiontofail="npp_write_rpc" streammode="normal"></embed>
|
|
|
|
|
|
|
|
<script class="testbody" type="application/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
function runTests() {
|
|
|
|
try {
|
|
|
|
document.getElementById('plugin1').getPaintCount();
|
|
|
|
ok(true, "Data delivery didn't crash");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
ok(false, "Data delivery crashed");
|
|
|
|
}
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
</script>
|