summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/browser/form_disabled_readonly_passwordField.html
blob: 4e47d9790df3511a42589b311e7ff9751fe1a94a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html><body>
    <form id="login_form_disabled_password">
        <input type="text" name="username" autocomplete="username">
        <input type="password" name="password" autocomplete="password" disabled>
        <button type="submit">Log in</button>
    </form>
    <form id="login_form_readonly_password">
        <input type="text" name="username" autocomplete="username">
        <input type="password" name="password" autocomplete="password" readonly>
        <button type="submit">Log in</button>
    </form>
</body></html>