blob: 2be96daa4b0223745e3a27d0afebf17287418fe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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); });
]]>
</script>
</html>
|