summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/mochitest/test_frameWrapping.html
blob: 4c8a6c428c779c55566d44bd89d42af84911957b (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
<!DOCTYPE HTML>
<html>
<!--
No bug.
-->
<head>
  <title>Test for Bug </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=">Mozilla Bug </a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** No bug for this test  **/

function go() {
    var win = frames[0];
    (function() {
        var utils = SpecialPowers.getDOMWindowUtils(window);
        is(utils.getClassName(win), "Proxy", "correctly wrap frame elements");
     })()
    SimpleTest.finish();
}

SimpleTest.waitForExplicitFinish();

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