summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/615781-1.xhtml
blob: 1c0b53c6bfa9d8475192d1e83b3e4e30f2322783 (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); }, false);

]]>
</script>

</html>