tenfourfox/dom/base/crashtests/327571-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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>