gecko-dev/editor/composer/crashtests/407062-1.html

21 строка
326 B
HTML

<html contentEditable="true">
<head>
<script type="text/javascript">
function boom()
{
var r = document.documentElement;
while(r.firstChild)
r.firstChild.remove();
document.execCommand("contentReadOnly", false, "");
document.documentElement.focus();
}
</script>
</head>
<body onload="boom();"></body>
</html>