summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/571428-1.html
blob: ae2b960cacdbc8662e98a8ba317b13cc4f946db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
  var i = document.getElementById("i");
  i.setAttribute("type", "button");
  i.removeAttribute("type");
}
</script>
</head>
<body onload="boom();"><input id="i"></body>
</html>