summaryrefslogtreecommitdiffstats
path: root/dom/system/tests/test_bug1197901.html
blob: 7e1866ffa333e4142901c79266a7678fe4936456 (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
92
93
94
95
96
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1197901
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1197901</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

  /** Test for Bug 1197901 **/
  SimpleTest.requestFlakyTimeout("requestFlakyTimeout is silly");
  SimpleTest.waitForExplicitFinish();
  window.onload = function() {
    SimpleTest.waitForFocus(function() {
      SpecialPowers.pushPrefEnv({"set": [["device.sensors.test.events", true]]},
                                doTest);
      }, window);
  };

  function doTest() {
    window.onmessage = function(event) {
      ok(event.data.result, event.data.message);
    };

    // Only same-origin iframe should get the events.
    var xo = document.getElementById("cross-origin");
    xo.contentWindow.postMessage(
      { command: "addEventListener",
        expected: false,
        message: "Cross-origin iframe shouldn't get the sensor events."},
      "*");

    var so = document.getElementById("same-origin");
    so.contentWindow.postMessage(
      { command: "addEventListener",
        expected: true,
        message: "Same-origin iframe should get the sensor events." },
      "*");

    // We need a timeout here to check that something does not happen.
    setTimeout(function() {
      so.remove();
      xo.remove();
      doWindowTest();
    }, 500);
  }

  function doWindowTest() {
    var win = window.open("file_bug1197901.html", "w1", "height=100,width=100");
    win.onload = function() {
      win.focus();
      SimpleTest.waitForFocus(function() {
        var win2 = window.open("file_bug1197901.html", "w2", "height=100,width=100,left=100");
        win2.onload = function() {
          win2.focus();
          SimpleTest.waitForFocus(function() {
            // Only focused window should get the events.
            win.postMessage(
              { command: "addEventListener",
                expected: false,
                message: "Only focused window should get the sensor events." },
              "*");
            win2.postMessage(
              { command: "addEventListener",
                expected: true,
                message: "Focused window should get the sensor events." },
              "*");
            setTimeout(function() {
              window.onmessage = null;
              win.close();
              win2.close();
              SimpleTest.finish();
            }, 500);
          }, win2);
        };
      }, win);
    };
  }

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=">Mozilla Bug </a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
<iframe src="file_bug1197901.html" id="same-origin"></iframe>
<iframe src="http://example.com/tests/dom/system/tests/file_bug1197901.html" id="cross-origin"></iframe>
</body>
</html>