blob: edb38bb9dfa130da2f284f7ceca7b98a7d279a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener("load", async () => {
document.documentElement.setAttribute("contenteditable", "true");
getSelection().collapse(document.body.lastChild, document.body.lastChild.length);
document.execCommand("delete");
});
</script>
</head>
<body><svg>
<svg display="table-cell">
</svg>
</svg>
</body>
</html>
|