chromium/chrome/test/data/password/password_form_with_password_readonly.html

<!--
    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>