mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 19:03:07 +09:00
18 lines
416 B
HTML
18 lines
416 B
HTML
<!DOCTYPE html>
|
|
<html style="position: relative; -moz-column-count: 3;" class="reftest-wait">
|
|
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
document.body.style.position = "";
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" style="position: absolute;">A<span><div></div>B</span></body>
|
|
|
|
</html>
|