mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
17 lines
314 B
HTML
17 lines
314 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
var n = document.getElementById("a").firstChild;
|
|
n.data = "";
|
|
n.data = "z";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();" style="-moz-column-count: 3;"><span id="a">x‮</span><span>y</span></body>
|
|
</html>
|