mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
17 lines
473 B
HTML
17 lines
473 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
function fun_0() {
|
||
|
|
document.implementation.createDocument('', '', null).adoptNode(o2);
|
||
|
|
}
|
||
|
|
|
||
|
|
o1 = document.createElement('map');
|
||
|
|
o2 = document.createElement('iframe');
|
||
|
|
document.documentElement.appendChild(o1);
|
||
|
|
document.documentElement.appendChild(o2);
|
||
|
|
o1.textContent = 'x';
|
||
|
|
document.addEventListener('DOMNodeRemoved', fun_0, false);
|
||
|
|
o1.innerText = 'x';
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
</html>
|