mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
18 lines
424 B
HTML
18 lines
424 B
HTML
<!DOCTYPE html>
|
|
<html style="display: table;">
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.appendChild(document.body);
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.appendChild(document.body);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" style="-moz-column-count: 2;"><div style="height: 1px;"></div><span style="display: inline-block;"></span></body>
|
|
|
|
</html>
|