blob: bf5c81060aa1c0c214985e8ebdb9fc9b9ade1c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<script>
function start () {
const selection = window.getSelection()
selection.setPosition(hr, 0)
document.execCommand('delete', false)
}
</script>
<body onload="start()">
<p id="" hidden="">
<canvas id="" contenteditable="">
<hr id="hr" contenteditable="true">
3uW4*</hr></canvas>
</p>
</body>
</html>
|