blob: 3871df47df33e001ba17786f264c338e4a0512ec [file] [log] [blame]
<head>
<script>
function test()
{
if (window.testRunner)
testRunner.dumpAsText();
document.all.input.value = "PASS"
if (window.testRunner)
document.getElementById('res').innerText = document.all.input.value;
}
</script>
</head>
<body onload="test();">
<p>This tests setting inputs using document.all. If successful, the input should show PASS.<form>
<input name="input">
<div id="res"></div>
</body>