Skip to content

Commit

Permalink
Fix broken tests due to checkbox submitUnchecked default value change
Browse files Browse the repository at this point in the history
  • Loading branch information
burtonrhodes committed Mar 23, 2018
1 parent 35480e6 commit 502c57d
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" checked="checked" id="someId" title="mytitle" onfocus="test();"/>
<input type="hidden" id="__checkbox_someId" name="__checkbox_foo" value="baz"/>
<label for="someId" class="checkboxLabel">mylabel</label>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" id="foo" title="mytitle"/>
<input type="hidden" id="__checkbox_foo" name="__checkbox_foo" value="baz"/>
<label for="foo" class="checkboxLabel">mylabel</label>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" checked="checked" id="foo" class="myErrorClass" title="mytitle" onclick="test();" ondblclick="test();"/>
<input type="hidden" id="__checkbox_foo" name="__checkbox_foo" value="baz"/>
<label for="foo" class="checkboxErrorLabel">mylabel</label>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" checked="checked" id="foo" style="color:red" title="mytitle" onclick="test();" ondblclick="test();"/>
<input type="hidden" id="__checkbox_foo" name="__checkbox_foo" value="baz"/>
<label for="foo" class="checkboxErrorLabel">mylabel</label>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
<tr>
<td colspan="2">
<input type="checkbox" name="foo" value="baz" checked="checked" id="someId" title="mytitle" onfocus="test();"/>
<input type="hidden" id="__checkbox_someId" name="__checkbox_foo" value="baz"/>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" checked="checked" id="someId" title="mytitle" onfocus="test();"/>
<input type="hidden" id="__checkbox_someId" name="__checkbox_foo" value="baz"/>
</td>
</tr>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
</td>
<td class="tdCheckboxInput">
<input type="checkbox" name="foo" value="baz" checked="checked" disabled="disabled" id="foo" title="mytitle" />
<input type="hidden" id="__checkbox_foo" name="__checkbox_foo" value="baz" disabled="disabled"/>
<label for="foo" class="checkboxLabel">mylabel</label>
</td>
</tr>

0 comments on commit 502c57d

Please sign in to comment.