diff options
author | John Resig <jeresig@gmail.com> | 2006-10-03 09:40:16 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-10-03 09:40:16 +0000 |
commit | 3527e8f6745786e65dc209f1518372f3270a9920 (patch) | |
tree | c46c41de4e2975eddcbf28881973b3897f9efa1e /build/test/index.html | |
parent | 3672372c1871d3626447006f0dccc4858a6aeedf (diff) | |
download | jquery-3527e8f6745786e65dc209f1518372f3270a9920.tar.gz jquery-3527e8f6745786e65dc209f1518372f3270a9920.zip |
css('display') works slightly differently in Safari. Also, the test suite having <input checked/> doesn't work in Safari, at all. Fixed to be standards compliant.
Diffstat (limited to 'build/test/index.html')
-rw-r--r-- | build/test/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/test/index.html b/build/test/index.html index 048eec17c..5666d6e09 100644 --- a/build/test/index.html +++ b/build/test/index.html @@ -39,8 +39,8 @@ <input type="text" name="text2" value="Test" id="text2" disabled="disabled"/> <input type="radio" name="radio1" id="radio1"/> - <input type="radio" name="radio2" id="radio2" checked/> - <input type="checkbox" name="check" id="check1" checked/> + <input type="radio" name="radio2" id="radio2" checked="checked"/> + <input type="checkbox" name="check" id="check1" checked="checked"/> <input type="checkbox" id="check2"/> <input type="hidden" name="hidden" id="hidden1"/> @@ -62,12 +62,12 @@ <option id="option2a" value="">Nothing</option>
<option id="option2b" value="1">1</option>
<option id="option2c" value="2">2</option>
- <option id="option2d" selected value="3">3</option>
+ <option id="option2d" selected="selected" value="3">3</option>
</select>
<select name="select3" id="select3" multiple="multiple">
<option id="option3a" value="">Nothing</option>
<option id="option3b" selected="selected" value="1">1</option>
- <option id="option3c" selected value="2">2</option>
+ <option id="option3c" selected="selected" value="2">2</option>
<option id="option3d" value="3">3</option>
</select> </form> |