зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
235 B
HTML
15 строки
235 B
HTML
|
<!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>
|