blob: 0b0e188732751cf79141cab3fb95726ae5b91c3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<script>
document.addEventListener("DOMContentLoaded", () => {
const fieldset = document.querySelector("fieldset");
document.documentElement.contentEditable = true;
fieldset.contentEditable = false;
document.execCommand("justifyLeft");
document.designMode = "on";
document.execCommand("indent");
document.execCommand("forwardDelete");
document.execCommand("delete");
});
</script>
<acronym readonly autofocus>
<sup>
<fieldset>
here is fieldset
</fieldset>
</acronym>
</html>
|