summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/test_bug532208.html
blob: 0a4cdb985a46d5c56081f5e52d2fc19d51a97be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<head>
<title>Test for correct async delivery of large streams, bug
532208</title>

<script type="application/javascript"
src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="plugin-utils.js"></script>

<body onload="setTimeout(runTests, 2000)">

<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);

function runTests() {
  try {
    document.getElementById('plugin1').getPaintCount();
    ok(true, "Data delivery didn't crash");
  }
  catch (e) {
    ok(false, "Data delivery crashed");
  }
  SimpleTest.finish();
}
</script>

<embed id="plugin1" type="application/x-test" width="400"
  height="400" src="large-pic.jpg" functiontofail="npp_write_rpc" streammode="normal"></embed>