blob: 3b9fe9a52da03c53125e3130a60352fa143b396b (
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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=504877
-->
<head>
<title>Test for Bug 504877</title>
<script type="application/javascript" 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=504877">Mozilla Bug 504877</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 504877 **/
SimpleTest.waitForExplicitFinish();
var p = 0;
function go() {
var ifr = $('ifr').contentWindow;
function test1() {
try {
ifr.foopy;
ok(false, "should have thrown a cross-origin access exception");
} catch (e) {
ok(/Permission denied/.test(e), "Threw a permission denied exception");
}
var loc = ifr.location;
(function() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
ifr.blat = 42;
is(ifr.blat, 42, "able to set random properties")
is(ifr.getblat(), 42, "setting properties propagates");
is(ifr.foopy, 42, "able to use UniversalXPConnect to get random properties");
loc.replace; // resolves the property onto the wrapper.
})();
loc.replace("http://mochi.test:8888/");
ok(true, "able to set location on the cross origin(!) frame");
}
function test2() {
SimpleTest.finish();
}
switch (++p) {
case 1: return test1();
case 2: return test2();
}
}
</script>
</pre>
<iframe src="http://example.org/tests/js/xpconnect/tests/mochitest/bug504877_helper.html" id="ifr" onload="go()"></iframe>
</body>
</html>
|