tenfourfox/editor/libeditor/crashtests/643786-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
347 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var f = document.getElementById("f");
var fw = f.contentWindow;
fw.document.designMode = 'on';
f.style.content = "'m'";
fw.document.removeChild(fw.document.documentElement)
}
</script>
</head>
<body onload="boom();"><iframe id="f" src="data:text/html,"></iframe></body>
</html>