mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 05:14:24 +00:00
7b1f32af65
MozReview-Commit-ID: 9jQyvpXFl1E --HG-- extra : rebase_source : f1a2f9dcc74291c382bc106757b032d42da185be
17 lines
338 B
HTML
17 lines
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>
|