summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/browser/form_basic_login_fields_with_max_length.html
blob: 23c8efcc2a201389b8ff81d4d1d74e5b0bb89a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html><html><head><meta charset="utf-8"></head><body>
<!-- Any copyright is dedicated to the Public Domain.
    - http://creativecommons.org/publicdomain/zero/1.0/ -->

  <!-- Simplest login form with username's maxlength attribute set -->
  <form id="form-basic-max-password">
    <input id="form-basic-username" name="username" maxlength="5">
    <input id="form-basic-password" name="password" type="password" >
    <input id="form-basic-submit" type="submit">
  </form>

  <!-- Simplest login form with password's maxlength attribute set -->
  <form id="form-basic-max-username">
    <input id="form-basic-username" name="username">
    <input id="form-basic-password" name="password" type="password" maxlength="5">
    <input id="form-basic-submit" type="submit">
  </form>

</body></html>