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

18 lines
295 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.getElementById("j").focus();
try {
document.execCommand("insertunorderedlist", false, null);
} catch(e) { }
}
</script>
</head>
<body onload="boom();"><span><span contenteditable id="j"></span>T</span></body>
</html>