blob: 64e0d361805d52dc1e1ec2ee680b63323eb794a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for Bug 341604</title>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onLoad="doStuff()">
I should NOT be opened by a sandboxed iframe via any method
</body>
</html>
<script>
function doStuff() {
window.opener.ok(false, "sandboxed documents should NOT be able to open windows");
self.close();
}
</script>
|