gecko/toolkit/components/passwordmgr/test/subtst_notifications_11.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

25 lines
563 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Subtest for Login Manager notifications</title>
</head>
<body>
<h2>Subtest 11 (popup windows)</h2>
<script>
// Ignore the '?' and split on |
[username, password, features, autoClose] = window.location.search.substring(1).split('|');
var url = "subtst_notifications_11_popup.html?" + username + "|" + password;
var popupWin = window.open(url, "subtst_11", features);
// Popup window will call this function on form submission.
function formSubmitted() {
if (autoClose)
popupWin.close();
}
</script>
</body>
</html>