16 lines
No EOL
375 B
HTML
16 lines
No EOL
375 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta char="utf-8">
|
|
<script>
|
|
addEventListener("load", () => {
|
|
document.documentElement.contentEditable = true;
|
|
getSelection().collapse(document.querySelector("svg"), document.querySelector("svg").childNodes.length);
|
|
document.execCommand("delete");
|
|
});
|
|
</script>
|
|
<body>
|
|
<svg>
|
|
<a display="table-header-group">
|
|
</a>
|
|
</svg></body></html> |