<!-- A page that is used to test that a dynamic form fill doesn't trigger if the form is modified more that a second after the user triggered the first fill. -->
<body>
<form name="addr1.1" id="form1" action="https://example.com/" method="post">
Name: <input type="text" name="firstname" id="firstname"><br>
Address: <input type="text" name="address1" id="address1"><br>
City: <input type="text" name="city" id="city"><br>
State: <select name="state" id="state">
<option value="CA">CA</option>
<option value="MA">MA</option>
<option value="NY">NY</option>
<option value="MD">MD</option>
<option value="OR">OR</option>
<option value="OH">OH</option>
<option value="IL">IL</option>
<option value="DC">DC</option>
</select> <br>
Zip: <input name="zip" id="zip"> <br>
Country: <select name="country" id="country" onchange="CountryChanged()">
<option value="CA">Canada</option>
<option value="US">United States</option>
</select> <br>
Company: <input name="company" id="company"> <br>
Email: <input name="email" id="email"> <br>
Phone: <input name="phone" id="phone"> <br>
<input type="reset" value="Reset">
<input type="submit" value="Submit" id="profile_submit">
</form>
</body>
<script src="dynamic_form_utils.js"></script>
<script>
function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
function CountryChanged() {
sleep(2000).then(() => {
RemoveForm('form1');
var new_form = AddNewFormAndFields('form1', 'addr1.1');
document.getElementsByTagName('body')[0].appendChild(new_form);
window['refill'] = true;
console.log('An event happened that should not trigger a refill.');
});
}
</script>