diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:07:44 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:07:44 +0000 |
commit | 5e99807271ebe194b7f0278a929b053b4dd46c81 (patch) | |
tree | 096ec244bbefc3a4c726333438d515d219e5827b /test/index.html | |
parent | 2e2a1b8910afcc23b1f71c188dca2d88067d70da (diff) | |
download | jquery-5e99807271ebe194b7f0278a929b053b4dd46c81.tar.gz jquery-5e99807271ebe194b7f0278a929b053b4dd46c81.zip |
Fix for #1944. Added nodeName and tagName to jQuery.props and tests for maxlength, defaultValue, selectedIndex, tagName and nodeName.
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/index.html b/test/index.html index 703354cfd..80b947d45 100644 --- a/test/index.html +++ b/test/index.html @@ -40,7 +40,7 @@ <ul id="firstUL"></ul> <ol id="empty"></ol> <form id="form" action="formaction"> - <input type="text" name="action" value="Test" id="text1"/> + <input type="text" name="action" value="Test" id="text1" maxlength="30"/> <input type="text" name="text2" value="Test" id="text2" disabled="disabled"/> <input type="radio" name="radio1" id="radio1" value="on"/> @@ -55,7 +55,7 @@ <button id="button" name="button">Button</button> - <textarea id="area1">foobar</textarea> + <textarea id="area1" maxlength="30">foobar</textarea> <select name="select1" id="select1"> <option id="option1a" value="">Nothing</option> |