git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7120b56
)
Added a test case for $("<option>test</option>")[0].selected (bug #2050).
author
John Resig
<jeresig@gmail.com>
Fri, 14 Dec 2007 01:57:29 +0000
(
01:57
+0000)
committer
John Resig
<jeresig@gmail.com>
Fri, 14 Dec 2007 01:57:29 +0000
(
01:57
+0000)
test/unit/core.js
patch
|
blob
|
history
diff --git
a/test/unit/core.js
b/test/unit/core.js
index
12b4056
..
03f89d1
100644
(file)
--- a/
test/unit/core.js
+++ b/
test/unit/core.js
@@
-152,7
+152,7
@@
test("isFunction", function() {
var foo = false;
test("$('html')", function() {
- expect(5);
+ expect(6);
reset();
foo = false;
@@
-169,6
+169,8
@@
test("$('html')", function() {
var j = $("<span>hi</span> there <!-- mon ami -->");
ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" );
+
+ ok( !$("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" );
});
test("$('html', context)", function() {