summaryrefslogtreecommitdiffstats
path: root/toolkit/components/windowcreator/test/test_window_open_position_constraint.html
blob: 80e2371ed126c9495cfa1d8701581fedd3a0d04b (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Bug 978847</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=978847">Mozilla Bug 978847</a>
<p id="display"></p>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

SimpleTest.waitForFocus(function() {
  var x;
  var y;

  // window should be constrained to the screen rect,
  // which we assume is less than 10000px square
  var w1 = window.open("about:blank", "", "left=16000,top=16000,width=100,height=100");
  SimpleTest.waitForFocus(function() {
    ok(w1.screenX < 10000 && w1.screenY < 10000,
       "window should not be opened off-screen: got location " +
       w1.screenX + "," + w1.screenY);
    x = w1.screenX;
    y = w1.screenY;
    w1.close();

    // larger window dimensions should result in a shift of the constrained location
    var w2 = window.open("about:blank", "", "left=16000,top=16000,width=150,height=150");
    SimpleTest.waitForFocus(function() {
      ok(w2.screenX == x - 50 && w2.screenY == y - 50,
         "constrained window position did not depend on size as expected: got " +
         w2.screenX + "," + w2.screenY + ", expected " + (x - 50) + "," + (y - 50));
      w2.close();

      // now try with coordinates that are close to MAXINT,
      // so adding width/height risks 32-bit integer overflow
      var w3 = window.open("about:blank", "", "left=2147483600,top=2147483600,width=100,height=100");
      SimpleTest.waitForFocus(function() {
        ok(w3.screenX < 10000 && w3.screenY < 10000,
           "window should not be opened off-screen: got location " +
           w3.screenX + "," + w3.screenY);
        w3.close();
        SimpleTest.finish();
      }, w3, true);
    }, w2, true);
  }, w1, true);
}, window, false);

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