mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
23 lines
272 B
HTML
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>
|