summaryrefslogtreecommitdiffstats
path: root/layout/generic/test/test_invalidate_during_plugin_paint.html
blob: 5894968b5cc84d1f185aa60cc32d2ce592edd4c2 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<head>
  <title>Test handling plugins invalidating during paint</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>    
  <script type="text/javascript" src="plugin-utils.js"></script>
  <script type="text/javascript">
    setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
  </script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <style>
  embed { width:200px; height:200px; display:block; }
  </style>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: block">
  <embed id="p1" type="application/x-test" drawmode="solid" color="80808080"></embed>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
var p1 = document.getElementById("p1");
var initialPaintCount;

function checkEnded() {
  var paints = p1.getPaintCount() - initialPaintCount;
  if (paints > 20) {
    ok(true, "Got " + paints + " paints");
    SimpleTest.finish();
    return;
  }

  setTimeout(checkEnded, 30);  
}

function doTest() {
  initialPaintCount = p1.getPaintCount();

  // Tell the plugin to invalidate every time it paints
  p1.setInvalidateDuringPaint(true);
  // Trigger an invalidation to get painting started
  p1.setColor("FFFFFFFF");
  // Now we should have an infinite cycle of painting and invalidations.

  // Poll for more than 20 paints to happen.
  checkEnded();
}

// Need to run 'doTest' after painting is unsuppressed, or we'll set clip
// regions to empty.
addLoadEvent(doTest);
SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");

</script>
</pre>
</body>
</html>