Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
prevent endless submit on test failure in form.html
  • Loading branch information
mislav committed Aug 1, 2011
1 parent 3858eed commit eae1af3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/form.html
Expand Up @@ -16,7 +16,7 @@ <h1>Zepto DOM unit tests</h1>
See the browser console for results.
</p>

<form id="login_form">
<form id="login_form" target="formtarget" action="./idontexist.html">
<input name="email" value="koss@nocorp.me" />
<input name="password" value="123456" /><br>
<input name="unchecked_hasValue" value="myValue" type="checkbox">
Expand All @@ -35,6 +35,8 @@ <h1>Zepto DOM unit tests</h1>
</select>
</form>

<iframe name="formtarget"></iframe>

<script>
var isObjectEquals = function (obj1, obj2) {
for (key in obj1) {
Expand Down

0 comments on commit eae1af3

Please sign in to comment.