OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
2 <!-- Autofill password test form. --> | |
3 <html> | |
4 <head> | |
5 <title>Autofill Password Test Form</title> | |
6 </head> | |
7 <body> | |
8 <h3>Autofill Password Test Form</h3> | |
9 <form> | |
10 <label for="user">User:</label> | |
11 <input id="user" type="text" name="name" onfocus="domAutomationControlle r.send(true)"><br> | |
12 <label for="password">Password:</label> | |
13 <input id="password" type="password" name="password" onfocus="domAutomat ionController.send(true)"><br> | |
14 <input type="submit" value="Submit"> | |
15 </form> | |
16 </body> | |
17 </html> | |
18 | |
OLD | NEW |