mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
Bug 713417 - Another crash test.
This commit is contained in:
parent
abbe509d74
commit
4d7a3d617b
26
content/base/crashtests/713417-2.html
Normal file
26
content/base/crashtests/713417-2.html
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user