gecko-dev/editor/libeditor/crashtests/1350772.html

17 строки
338 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
addEventListener("DOMContentLoaded", () => {
try {
document.designMode = 'on';
document.removeChild(document.documentElement);
document.appendChild(document.createElement("p"));
document.execCommand("insertParagraph", false, null);
} catch(e) {
}
});
</script>
</head>
</html>