mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f29dba6300
--HG-- extra : rebase_source : 6b9200bbc70ae9866acedf3c6e1eb8b8be21b52d
25 lines
563 B
HTML
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>
|