Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <html>
2 <script>
3 function login(){
4 document.login.username.value="Test";
5 document.login.password.value="Test";
6 document.getElementById('submit').click();
7 }
8 </script>
9 <head>
10 <title>Robocop Login</title>
11 <meta charset="utf-8">
12 </head>
13 <body onload="login()">
14 <h2>User Login </h2>
15 <form name="login" method="post" action="robocop_blank_01.html">
16 Username: <input type="text" name="username" id="username"><br>
17 Password: <input type="password" name="password" id="password"><br>
18 <input type="submit" id="submit" name="submit" value="Login!">
19 </form>
20 </body>
21 </html>