blob: 3477be3583b94fbec47e07db052320daba630e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<script>
function go() {
var a = document.createElement("e")
document.body.appendChild(a)
a.addEventListener("DOMSubtreeModified", () => {
c.src = ""
d.replaceWith(b)
f.srcdoc = ""
})
document.execCommand("selectAll", false)
a.setAttribute("s", "")
}
</script>
<div>
<output id="b"></output>
<iframe id="c" sandbox="allow-same-origin"></iframe>
<ul contenteditable="true">
<li id="d">A</li>
</ul>
<iframe id="f"></iframe>
<audio onloadstart="go()" src="">
|