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

17 lines
502 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml" contenteditable="true" style="-moz-user-select: all;"><sub>x</sub><script>
function boom()
{
window.getSelection().removeAllRanges();
var r = document.createRange();
r.setStart(document.documentElement, 0);
r.setEnd(document.documentElement, 0);
window.getSelection().addRange(r);
document.execCommand("subscript", false, null);
document.execCommand("insertText", false, "y");
}
window.addEventListener("load", boom, false);
</script></html>