blob: 4c30fe827506013e3accb7b8c5569860295aa171 (
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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=789713
-->
<head>
<meta charset="utf-8">
</head>
<body>
<script type="application/javascript">
/** Test for Bug 789713 **/
function go() {
var ifr = document.getElementById('ifr');
var pass = true;
var doc = ifr.contentDocument;
var win = ifr.contentWindow;
var walker = doc.createTreeWalker(doc.body);
pass = pass && (walker.root === doc.body);
walker.foo = "expando";
win.bar = "another-expando";
// First, do the document.domain operation. This shouldn't crash.
document.domain = "example.org";
// Now make sure we can still access properties on "walker".
try {
walker.root;
pass = pass && walker.foo == "expando";
} catch (e) {
pass = false;
}
// And make sure we can't access properties on "win", because the
// document.domain change revoked the access.
try {
win.bar;
pass = false;
} catch (e) { pass = pass && /Permission denied/.exec(e.message); }
window.parent.postMessage(pass, '*');
}
</script>
<iframe id="ifr" src="file_empty.html" onload="go()"></iframe>
</pre>
</body>
</html>
|