mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 713417 - Crash test.
This commit is contained in:
parent
cbaceac13e
commit
abbe509d74
23
content/base/crashtests/713417.html
Normal file
23
content/base/crashtests/713417.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
var f = document.getElementById("f");
|
||||
var w = f.contentWindow;
|
||||
var d = w.document;
|
||||
d.designMode = 'on';
|
||||
var r = d.documentElement;
|
||||
d.removeChild(r);
|
||||
document.adoptNode(r);
|
||||
f.parentNode.removeChild(f);
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onload="boom();">
|
||||
<iframe src="data:text/html,1" id="f"></iframe>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user