Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>