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

18 lines
390 B
HTML

<!DOCTYPE html>
<html>
<body>
<iframe></iframe>
</body>
<script>
onload = function() {
var i = document.querySelector("iframe");
var doc = i.contentDocument;
doc.body.appendChild(doc.createTextNode("foo"));
doc.designMode = "on";
while (doc.body.firstChild) {
doc.body.removeChild(doc.body.firstChild);
}
};
</script>
</html>