blob: c1c59b6b01f730c225c259aa427e6d5a4154e8d5 [file] [log] [blame]
<!--
Form with readonly password element.
-->
<html>
<body>
<form method="POST" action="done.html" onsubmit="return true;" id="testform">
<input type="text" id="username_field" name="username_field">
<input type="password" readonly id="password_field" name="password_field">
<input type="submit" id="input_submit_button" name="input_submit_button">
</form>
<button id="submit_button" name="submit_button"
onclick="document.getElementById('testform').submit()">
Submit!
</button>
<!--
Extremly wide <div> to allow scrolling to be tested.
-->
<div style="border:1px solid black;background-color:lightblue;height:75px;width:5000px;">
</div>
</body>
</html>