No Bug - add test coverage for more types of form fields to ignore in session form field restore. r=MattN

MozReview-Commit-ID: KdN5kETA9go
This commit is contained in:
Mike de Boer 2016-07-07 15:10:26 +02:00
parent 235923e449
commit 4a6222d06c

View File

@ -22,6 +22,14 @@
<input type="password" name="password"/>
<input type="PassWord" name="password2"/>
<input type="PASSWORD" name="password3"/>
<input autocomplete="off" name="auto1"/>
<input type="text" autocomplete="OFF" name="auto2"/>
<textarea autocomplete="off" name="auto3"/>
<select autocomplete="off" name="auto4">
<option value="1" selected="true"/>
<option value="2"/>
<option value="3"/>
</select>
</form>
</body>