summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/mochitest/test_bug589028.html
blob: 2cd0d15ebbe308dd05a12d97b0a95196f0e3eb29 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=589028
-->
<head>
  <title>Test for Bug 589028</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=589028">Mozilla Bug 589028</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script>

/** Test for Bug 589028 **/
SimpleTest.waitForExplicitFinish();
var p = 0;
function go() {
    var ifr = $('ifr');
    var ifrwin = ifr.contentWindow;
    var ifrdoc = ifr.contentDocument;

    o1 = new ifrwin.Option();
    is(o1.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    o2 = ifrwin.getMyOption();
    is(o2.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    o3 = ifrwin.getCallersOption(this);
    is(o3.ownerDocument, document);

    a1 = new ifrwin.Audio();
    is(a1.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    a2 = ifrwin.getMyAudio();
    is(a2.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    a3 = ifrwin.getCallersAudio(this);
    is(a3.ownerDocument, document);

    i1 = new ifrwin.Image();
    is(i1.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    i2 = ifrwin.getMyImage();
    is(i2.ownerDocument, ifrdoc, "ownerDocument doesn't match iframe");

    i3 = ifrwin.getCallersImage(this);
    is(i3.ownerDocument, document);

    SimpleTest.finish();
}


</script>
</pre>
<iframe src="bug589028_helper.html" id="ifr" onload="go()"></iframe>
</body>
</html>