mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
16 lines
468 B
HTML
16 lines
468 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<script>
|
|
function frameLoadHandler()
|
|
{
|
|
var i = document.createElement('input');
|
|
i.autofocus = true;
|
|
document.body.appendChild(i);
|
|
setTimeout(document.documentElement.removeAttribute('class'), 0);
|
|
}
|
|
</script>
|
|
<body>
|
|
<iframe onload="frameLoadHandler();" src="data:text/html,<input autofocus>"></iframe>
|
|
</body>
|
|
</html>
|