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

<!--
    A mock signup form that uses autocomplete attributes.
 -->
<html>
<body>
<form method="POST" action="done.html" onsubmit="return true;" id="testform">
  <input type="text" id="other_info" name="other_info">
  <input type="text" id="username_field" name="username_field"i autocomplete="username">
  <input type="password" id="password_field" name="password_field" autocomplete="new-password">
  <input type="submit" id="input_submit_button" name="input_submit_button">
</form>

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