tenfourfox/dom/html/crashtests/571428-1.html

15 lines
235 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>