blob: 74b13bb0eceaec94c103bcface1980501b8b2169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script>
window.onload = function () {
document.createElement("frameset").setAttribute("onunload", "go()")
}
function go() {
let a = document.getElementById("a");
let b = document.getElementById("b");
a.appendChild(b);
}
</script>
<div id="a">
<li id="b" contenteditable="true">
|