blob: 08883f0c955397cddc970c579e08b670b6605ead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<script>
function go() {
b.appendChild(document.body.firstChild)
document.getSelection().setBaseAndExtent(c.appendChild(b),0,b,1)
a.addEventListener("DOMCharacterDataModified", function() {
window.getSelection().removeAllRanges()
})
document.execCommand("delete", false)
}
</script>
<body onload=go()>
<audio id="a">
<li contenteditable="true">
<data id="c">
<source id="b">
|