зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
338 B
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>
|