gecko/toolkit/components/passwordmgr/test/subtst_notifications_11_popup.html
Matthew Noorenberghe f29dba6300 Bug 784028: password manager doesn't prompt to save passwords in popup windows - tests. r=gavin
--HG--
extra : rebase_source : 6b9200bbc70ae9866acedf3c6e1eb8b8be21b52d
2012-10-03 14:47:15 -07:00

31 lines
756 B
HTML

<html>
<head>
<title>Subtest for Login Manager notifications</title>
</head>
<body>
<h2>Subtest 11</h2>
<form id="form" action="formsubmit.sjs">
<input id="user" name="user">
<input id="pass" name="pass" type="password">
<button type='submit'>Submit</button>
</form>
<script>
function submitForm() {
// Get the password from the query string (exclude '?').
[username, password] = window.location.search.substring(1).split('|');
userField.value = username;
passField.value = password;
form.submit();
window.opener.formSubmitted();
}
window.onload = submitForm;
var form = document.getElementById("form");
var userField = document.getElementById("user");
var passField = document.getElementById("pass");
</script>
</body>
</html>