blob: ea21dae6c7758a796ff8df3aa0e2c9a8f5b74c46 (
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
|
<!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;
// Tree walkers use nsDOMGenericSH, which has a spineless PreCreate.
var walker = doc.createTreeWalker(doc.body);
pass = pass && (walker.root === doc.body);
// Grab a reference to Object.prototype to make sure we test the machinery
// with respect to standard prototype remapping.
var objProto = ifr.contentWindow.Object.prototype;
// First, do the document.domain operation. This shouldn't crash.
document.domain = "example.org";
// Now, make sure that we still can't access cross-origin properties despite
// the fact that the WN is shared under the hood.
try {
walker.root;
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>
|