tenfourfox/dom/html/crashtests/580507-1.xhtml

19 lines
278 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var input = document.getElementById("i");
input.setAttribute('type', "image");
input.removeAttribute('type');
input.placeholder = "Y";
}
</script>
</head>
<body onload="boom();"><input id="i" /></body>
</html>