mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
22 lines
381 B
HTML
22 lines
381 B
HTML
|
|
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
||
|
|
|
||
|
|
<input id="i"/>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
<![CDATA[
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var i = document.getElementById("i");
|
||
|
|
i.select();
|
||
|
|
i.setAttribute("type", "radio");
|
||
|
|
i.blur();
|
||
|
|
document.documentElement.removeAttribute("class");
|
||
|
|
}
|
||
|
|
|
||
|
|
window.addEventListener("load", function() { setTimeout(boom, 100); }, false);
|
||
|
|
|
||
|
|
]]>
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</html>
|