|
|
1 |
<!DOCTYPE html> |
2 |
<html> |
3 |
<!-- |
4 |
https://bugzilla.mozilla.org/show_bug.cgi?id=666869 |
5 |
--> |
6 |
<head> |
7 |
<title>Test for Bug 570341</title> |
8 |
<script type="application/javascript" src="/MochiKit/packed.js"></script> |
9 |
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
10 |
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
11 |
<script> |
12 |
|
13 |
function boom() |
14 |
{ |
15 |
var f = document.getElementById("f"); |
16 |
var frameWin = f.contentWindow; |
17 |
document.body.removeChild(f); |
18 |
ok(frameWin.performance==null, 'Performance for non-existing frame???'); |
19 |
SimpleTest.finish(); |
20 |
} |
21 |
|
22 |
</script> |
23 |
</head> |
24 |
<body onload="boom();"> |
25 |
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=666869">Mozilla Bug 666869</a> |
26 |
<p id="display"></p> |
27 |
<div id="content" style="display: none"> |
28 |
|
29 |
</div> |
30 |
<pre id="test"> |
31 |
<script type="application/javascript"> |
32 |
SimpleTest.waitForExplicitFinish(); |
33 |
</script> |
34 |
</pre> |
35 |
<iframe id="f" src="data:text/html,1"></iframe> |
36 |
</body> |
37 |
</html> |
38 |
|