tenfourfox/editor/composer/crashtests/407062-1.html

21 lines
332 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<html contentEditable="true">
<head>
<script type="text/javascript">
function boom()
{
var r = document.documentElement;
while(r.firstChild)
r.removeChild(r.firstChild);
document.execCommand("contentReadOnly", false, "");
document.documentElement.focus();
}
</script>
</head>
<body onload="boom();"></body>
</html>