Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html>
2 <head>
3 <title>Subtest for Login Manager notifications (private browsing)</title>
4 </head>
5 <body>
6 <h2>Subtest 1</h2>
7 <!--
8 Make sure that the password-save notification appears outside of
9 the private mode, but not inside it.
10 -->
11 <form id="form" action="formsubmit.sjs">
12 <input id="user" name="user" type="text">
13 <input id="pass" name="pass" type="password">
14 <button type='submit'>Submit</button>
15 </form>
17 <script>
18 function submitForm() {
19 userField.value = "notifyu1";
20 passField.value = "notifyp1";
21 form.submit();
22 }
24 window.onload = submitForm;
25 var form = document.getElementById("form");
26 var userField = document.getElementById("user");
27 var passField = document.getElementById("pass");
29 </script>
30 </body>
31 </html>