blob: 7d4ac069487cd1335c0ae865d043ef8e8fff0d84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script>
document.addEventListener("DOMContentLoaded", function() {
var o=document.getElementById('b');
o.parentNode.removeChild(o);
window.frames[0].document.body.appendChild(document.getElementById('a'));
})
</script>
<ol>
<li>
<table id='a'>
</table>
<iframe></iframe>
</li>
<ul id='b'>
|