mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 19:03:07 +09:00
23 lines
384 B
HTML
23 lines
384 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var r = document.documentElement;
|
|
|
|
while (r.firstChild)
|
|
r.removeChild(r.firstChild);
|
|
|
|
var a = document.createTextNode("a");
|
|
r.appendChild(a);
|
|
a.splitText(0);
|
|
a.splitText(0);
|
|
|
|
document.documentElement.offsetHeight;
|
|
|
|
r.appendChild(document.createTextNode("b"));
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
|
|
</script>
|