mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
14 lines
348 B
HTML
14 lines
348 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<input onfocus="focused()" autofocus>
|
|
<script>
|
|
function focused() {
|
|
var i = document.querySelector("input");
|
|
i.style.display = "block";
|
|
document.offsetWidth;
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|