summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/test_bug539565-1.html
blob: 022b8cfc61e94517d4cf55270c30b52d154e91f4 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=539565
-->
<head>
  <title>Test #1 for Bug 539565</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="application/javascript" src="plugin-utils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <script class="testbody" type="text/javascript">
function runTests() {
  var moveBy = 17;
  var waitedForPaint = 0;
  function waitForPaint(func) {
    waitedForPaint = 0;
    var testplugin = $("plugin1");
    testplugin.last_paint_count = testplugin.getPaintCount ? testplugin.getPaintCount() : -2;
    function waitForPaintCountIncrement() {
      waitedForPaint++;
      moveBy = -moveBy;
      $("abs").style.left = ($("abs").offsetLeft + moveBy) + 'px';
      var x = document.documentElement.offsetHeight;
      var pc = testplugin.getPaintCount ? testplugin.getPaintCount() : -2;
      if (waitedForPaint == 20 || (pc != testplugin.last_paint_count && pc >= 0)) {
        setTimeout(func,0);
      } else
        setTimeout(waitForPaintCountIncrement, 50);
    }
    waitForPaintCountIncrement();
  }

  function doClick(x,y,func) {
    synthesizeMouse($("plugin1"), x, y, {}, window);
    setTimeout(func,0);
  }

  function verify(test,x,y,next) {
    var p = $("plugin1").getLastMouseX();
    const delta = 2;
    ok(p-delta <= x && x <= p+delta, "test"+test+" LastMouseX got " + p + " expected " + x + 
                                     " with fullZoom="+SpecialPowers.getFullZoom(window)+" MozTransform='"+$("container").style.MozTransform+"'");
    p = $("plugin1").getLastMouseY();
    ok(p-delta <= y && y <= p+delta, "test"+test+" LastMouseY got " + p + " expected " + y +
                                     " with fullZoom="+SpecialPowers.getFullZoom(window)+" MozTransform='"+$("container").style.MozTransform+"'");
    if (next) next();
  }

  function click(x,y,next) {
    waitForPaint(function(){doClick(x,y,next);})
  }
  function zoom(factor) {
    SpecialPowers.setFullZoom(window, factor);
  }

  function test1() { // fullZoom=1 (sanity check)
    zoom(1);
    click(55,136, function(){verify("1",55,136,test2)});
  }
  function test2() { // fullZoom=2
    zoom(2);
    click(40,108, function(){verify("2",80,216,test2b)})
  }
  function test2b() {
    click(108,112, function(){verify("2c",216,224,endTest)})
  }

  function endTest() {
    zoom(1);
    SimpleTest.finish();
  }

  setTimeout(function(){waitForPaint(test1)},1000);
}

SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);

  </script>
</head>

<body onload="runTests()">
 <div id="container" style="position:relative;top: 0px; left: 0px; width: 640px; height: 480px;"> 
  <div id="abs" style="position:absolute; left:90px; top:90px; width:20px; height:20px; background:blue; pointer-events:none;"></div>
  <embed id="plugin1" type="application/x-test" wmode="transparent" width="200" height="200"></embed>
 </div>
</body>
</html>