mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
18 lines
387 B
HTML
18 lines
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var e = document.getElementsByTagName("mo")[0];
|
|
e.setAttribute("style", "position: absolute; top: 0px;");
|
|
document.documentElement.offsetHeight;
|
|
e.setAttribute("style", "position: absolute; top: 100px;");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<math><mo>boom!</mo></math>
|
|
</body>
|
|
</html>
|