mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
29 lines
637 B
HTML
29 lines
637 B
HTML
<html>
|
|
<head>
|
|
<title>Subtest for Login Manager notifications</title>
|
|
</head>
|
|
<body>
|
|
<h2>Subtest 4</h2>
|
|
(form autocomplete=off)
|
|
<form id="form" action="formsubmit.sjs" autocomplete="off">
|
|
<input id="user" name="user">
|
|
<input id="pass" name="pass" type="password">
|
|
<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>
|