Mypal/dom/base/crashtests/327571-1.html
2019-03-11 13:26:37 +03:00

23 lines
272 B
HTML

<html>
<head>
<script>
function init()
{
var x = document.getElementById("d");
x.__proto__ = document.getElementById("f");
x.inputname;
}
</script>
</head>
<body onload="init();">
<div id="d"></div>
<form id="f"><input name="inputname"></form>
</body>
</html>