Files
UXP-Fixed/editor/libeditor/crashtests/768748.html
T
2018-02-02 04:16:08 -05:00

17 lines
300 B
HTML

<!DOCTYPE html>
<html contenteditable="true">
<head>
<script>
function boom()
{
var looseText = document.createTextNode("x");
window.getSelection().collapse(looseText, 0);
document.queryCommandState("insertorderedlist");
}
</script>
</head>
<body onload="setTimeout(boom, 0)"></body>
</html>