mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
22 lines
396 B
HTML
22 lines
396 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
|
|
document.documentElement.style.direction = "rtl";
|
|
|
|
document.documentElement.offsetHeight;
|
|
var s = document.getElementById("s");
|
|
|
|
s.removeChild(s.firstChild);
|
|
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();" style="width: 1px;"><span id="s"> x y</span></body>
|
|
</html>
|