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

23 lines
430 B
HTML

<div xmlns="http://www.w3.org/1999/xhtml">
<script type="text/javascript">
function boom()
{
var r = document.documentElement;
r.style.position = "absolute";
r.contentEditable = "true";
r.focus();
r.contentEditable = "false";
r.focus();
r.contentEditable = "true";
document.execCommand("subscript", false, null);
r.contentEditable = "false";
}
window.addEventListener("load", boom, false);
</script>
</div>