gecko/toolkit/components/passwordmgr/test/subtst_notifications_11.html

25 lines
563 B
HTML
Raw Normal View History

<!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>