mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
12 lines
246 B
HTML
12 lines
246 B
HTML
|
|
<html class="reftest-wait">
|
||
|
|
<input id="a" type="file">
|
||
|
|
<script>
|
||
|
|
function doe() {
|
||
|
|
var elem = document.getElementById('a');
|
||
|
|
elem.style.display = "none";
|
||
|
|
elem.focus();
|
||
|
|
document.documentElement.className = "";
|
||
|
|
}
|
||
|
|
setTimeout(doe, 0);
|
||
|
|
</script>
|
||
|
|
</html>
|