mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
26 lines
495 B
HTML
26 lines
495 B
HTML
<!-- originally a crash test for bug 713417
|
|
https://bug713417.bugzilla.mozilla.org/attachment.cgi?id=584240 -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var w = document.getElementById("f").contentWindow;
|
|
var d = w.document;
|
|
d.designMode = 'on';
|
|
var r = d.documentElement;
|
|
d.removeChild(r);
|
|
document.adoptNode(r);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<iframe src="data:text/html;charset=utf-8,1" id="f"></iframe>
|
|
</body>
|
|
</html>
|
|
|