20 lines
365 B
HTML
20 lines
365 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
"use strict";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const editingHost = document.querySelector("span[contenteditable]");
|
|
editingHost.focus();
|
|
editingHost.remove();
|
|
}, {once: true});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
a
|
|
<span contenteditable dir="rtl">
|
|
<video width="10000">
|
|
</body>
|
|
</html>
|