toolkit/components/passwordmgr/test/subtst_privbrowsing_2.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <html>
     2 <head>
     3   <title>Subtest for Login Manager notifications (private browsing)</title>
     4 </head>
     5 <body>
     6 <h2>Subtest 2</h2>
     7 <!--
     8   Make sure that the password-change notification appears outside of
     9   the private mode, but not inside it.
    10 -->
    11 <form id="form" action="formsubmit.sjs">
    12   <input id="pass" name="pass" type="password">
    13   <input id="newpass" name="newpass" type="password">
    14   <button type='submit'>Submit</button>
    15 </form>
    17 <script>
    18 function submitForm() {
    19   passField.value = "notifyp1";
    20   passField2.value = "notifyp2";
    21   form.submit();
    22 }
    24 window.onload = submitForm;
    25 var form      = document.getElementById("form");
    26 var passField = document.getElementById("pass");
    27 var passField2 = document.getElementById("newpass");
    29 </script>
    30 </body>
    31 </html>

mercurial