mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
641 B
HTML
29 lines
641 B
HTML
<html>
|
|
<head>
|
|
<title>Subtest for Login Manager notifications</title>
|
|
</head>
|
|
<body>
|
|
<h2>Subtest 3</h2>
|
|
(password autocomplete=off)
|
|
<form id="form" action="formsubmit.sjs">
|
|
<input id="user" name="user">
|
|
<input id="pass" name="pass" type="password" autocomplete="off">
|
|
<button type='submit'>Submit</button>
|
|
</form>
|
|
|
|
<script>
|
|
function submitForm() {
|
|
userField.value = "notifyu1";
|
|
passField.value = "notifyp1";
|
|
form.submit();
|
|
}
|
|
|
|
window.onload = submitForm;
|
|
var form = document.getElementById("form");
|
|
var userField = document.getElementById("user");
|
|
var passField = document.getElementById("pass");
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|