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

30 lines
559 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var div = document.querySelector("div");
div.contentEditable = "true";
div.focus();
var r = document.documentElement;
document["removeChild"](r);
document["appendChild"](r);
setTimeout(function() {
getSelection().collapse(div, 0);
document.execCommand("inserthtml", false, "a");
setTimeout(function() {
document.documentElement.removeAttribute("class");
}, 0);
}, 0);
}
</script>
</head>
<body onload="boom();"><div></div></body>
</html>