trisquel-icecat/icecat/testing/web-platform/tests/editing/crashtests/inserthtml-indent-delete-when-input-element-in-editing-host-has-focus.html

18 lines
442 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test for bug 636074 of Mozilla</title>
<script>
function boom()
{
document.getElementById("i").focus();
document.documentElement.contentEditable = "true";
document.execCommand("inserthtml", false, "<table>");
document.execCommand("indent", false, null);
document.execCommand("delete", false, null);
}
</script>
</head>
<body onload="boom();"><input id="i"></body>
</html>