summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/test_bug968148.html
blob: 3cab8b073c9f13b87d6bbbe5cdcc65ef000407d5 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=968148
-->
<head>
  <title>Test for Bug 968148</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="text/javascript;version=1.7">
    function setRemoteFrame() {
      var iframe = document.getElementById("testFrame");
      iframe.src = "bug968148_inner.html";

      function messageListener(event) {
        eval(event.data);
      }

      window.addEventListener("message", messageListener, false);
    }

    function runTest() {
      SimpleTest.waitForExplicitFinish();

      SpecialPowers.pushPrefEnv({
        "set": [
          ["dom.w3c_pointer_events.enabled", true]
        ]
      }, setRemoteFrame);
    }
  </script>
</head>
<body onload="runTest();">
  <iframe id="testFrame" height="500" width="500"></iframe>
</body>