diff options
author | David Serduke <davidserduke@gmail.com> | 2007-11-16 23:39:23 +0000 |
---|---|---|
committer | David Serduke <davidserduke@gmail.com> | 2007-11-16 23:39:23 +0000 |
commit | e2ef3df86d5f54274bf2b779d882c30aa0886bfe (patch) | |
tree | 7613d7efe66c2ba32366deb64c3d3a96edcf1951 /test/index.html | |
parent | b9371a6ca4b756c4b4266a08336e80f715b66ad3 (diff) | |
download | jquery-e2ef3df86d5f54274bf2b779d882c30aa0886bfe.tar.gz jquery-e2ef3df86d5f54274bf2b779d882c30aa0886bfe.zip |
Fixed #1095 bug where radio buttons became unchecked during show(). Also added unit test and had to fix a selector test that was broken by the new testing div in test/index.html. Last made some whitespace changes.
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/test/index.html b/test/index.html index 9f91f8842..703354cfd 100644 --- a/test/index.html +++ b/test/index.html @@ -132,15 +132,24 @@ Z</textarea> <input type="radio" name="R1" value="2" /> <input type="text" name="My Name" value="me" /> <input type="reset" name="reset" value="NO" /> - <select name="S1">
<option value="abc">ABC</option>
<option value="abc">ABC</option>
<option value="abc">ABC</option>
</select>
<select name="S2" multiple="multiple" size="3">
<option value="abc">ABC</option>
<option value="abc">ABC</option>
<option value="abc">ABC</option>
</select> + <select name="S1"> + <option value="abc">ABC</option> + <option value="abc">ABC</option> + <option value="abc">ABC</option> + </select> + <select name="S2" multiple="multiple" size="3"> + <option value="abc">ABC</option> + <option value="abc">ABC</option> + <option value="abc">ABC</option> + </select> <select name="S3"> <option selected="selected">YES</option> </select> <select name="S4"> <option value="" selected="selected">NO</option> </select> - <input type="submit" name="sub1" value="NO" /> - <input type="submit" name="sub2" value="NO" /> + <input type="submit" name="sub1" value="NO" /> + <input type="submit" name="sub2" value="NO" /> <input type="image" name="sub3" value="NO" src="submit.gif" /> <button name="sub4" type="submit" value="NO">NO</button> <input name="D1" type="text" value="NO" disabled="disabled" /> @@ -150,6 +159,16 @@ Z</textarea> <option selected="selected" value="NO">NO</option> </select> </form> + <div id="moretests"> + <form> + <div id="checkedtest" style="display:none;"> + <input type="radio" name="checkedtestradios" checked="checked"/> + <input type="radio" name="checkedtestradios" value="on"/> + <input type="checkbox" name="checkedtestcheckboxes" checked="checked"/> + <input type="checkbox" name="checkedtestcheckboxes" /> + </div> + </form> + </div> </div> </dl> |