Bug 713417 - Another crash test.

This commit is contained in:
Mats Palmgren 2011-12-26 14:29:25 +01:00
parent abbe509d74
commit 4d7a3d617b
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var f = document.getElementById("f");
var w = f.contentWindow;
var d = w.document;
var range = d.createRange();
w.getSelection().removeAllRanges();
w.getSelection().addRange(range);
var r = d.documentElement;
d.removeChild(r);
w.getSelection().collapse(r,0);
document.adoptNode(r);
f.parentNode.removeChild(f);
}
</script>
</head>
<body onload="boom();">
<iframe src="data:text/html,1" id="f"></iframe>
</body>
</html>

View File

@ -103,3 +103,5 @@ load 700090-2.html
load 700512.html
load xhr_html_nullresponse.html
load 709384.html
load 713417.html
load 713417-2.html