summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/chrome/test_bug658909.xhtml
blob: 360b8045e2b0c7e92b541150a8b1017a1f8d83c4 (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
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=658909
-->
<window title="Mozilla Bug 658909"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <!-- test results are displayed in the html:body -->
  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=658909"
     target="_blank">Mozilla Bug 658909</a>
  </body>

  <!-- test code goes here -->
  <script type="application/javascript">
  <![CDATA[
  /** Test for call/apply-ing Xray methods.**/
  SimpleTest.waitForExplicitFinish();

  let gLoadCount = 0;
  function frameLoaded() {
    if (++gLoadCount == frames.length)
      go();
  }

  function msg(a, b, testName) {
    return "(" + a.name + ", " + b.name + "): " + testName;
  }

  var testFunctions = {
    testDocumentElement(a, b, name) {
      var getter = Object.prototype.__lookupGetter__.call(a.document, 'documentElement');
      is(getter.call(b.document), b.document.documentElement, msg(a, b, name));
    },

    testInvalidCall(a, b, name) {
      var getter = Object.prototype.__lookupGetter__.call(a.document, 'documentElement');
      var threw = false;
      try { getter.call(b.document.body); } catch (e) { threw = true; };
      ok(threw, msg(a, b, name));
    },

    testStatus(a, b, name) {
      var setter = Object.prototype.__lookupSetter__.call(a, 'status');
      is(b.status, "", "Empty status");
      setter.call(b, "foopy");
      is(b.status, "foopy", msg(a, b, name));
      b.status = "";
    },

    testCreateElement(a, b, name) {
      is(a.document.createElement.call(b.document, 'div').ownerDocument, b.document, msg(a, b, name));
    },

    testWindowName(a, b, name) {
      var getter = Object.prototype.__lookupGetter__.call(a, 'name');
      is(getter.call(b), b.name, msg(a, b, name));
    },

    testCanvas(a, b, name) {
      var canvasA = a.document.createElement('canvas');
      var canvasB = b.document.createElement('canvas');
      var contextA = canvasA.getContext('2d');
      var contextB = canvasB.getContext('2d');
      var getter = Object.prototype.__lookupGetter__.call(contextA, 'canvas');
      is(getter.call(contextB), canvasB, msg(a, b, name));
    }
  };

  function go() {
    for (let i = 0; i < frames.length; ++i)
        frames[i].name = 'frame' + i;
    for (let i = 0; i < frames.length; ++i) {
      for (let j = 0; j < frames.length; ++j) {
        for (let k in testFunctions)
          testFunctions[k](frames[i], frames[j], k);
      }
    }

    SimpleTest.finish();
  }


  ]]>
  </script>
  <iframe id="frame1" onload="frameLoaded();" type="content" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html" />
  <iframe id="frame2" onload="frameLoaded();" type="content" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html" />
  <iframe id="frame3" onload="frameLoaded();" type="content" src="http://example.com/tests/js/xpconnect/tests/mochitest/file_empty.html" />
</window>