Merge branch 'bug7524' of https://github.com/csnover/jquery into csnover-bug7524
This commit is contained in:
commit
8943b427f6
2 changed files with 13 additions and 8 deletions
|
@ -79,7 +79,7 @@ test("jQuery.data", function() {
|
|||
});
|
||||
|
||||
test(".data()", function() {
|
||||
expect(4);
|
||||
expect(5);
|
||||
|
||||
var div = jQuery("#foo");
|
||||
strictEqual( div.data("foo"), undefined, "Make sure that missing result is undefined" );
|
||||
|
@ -90,6 +90,9 @@ test(".data()", function() {
|
|||
|
||||
var nodiv = jQuery("#unfound");
|
||||
equals( nodiv.data(), null, "data() on empty set returns null" );
|
||||
|
||||
var obj = { foo: "bar" };
|
||||
equals( jQuery(obj).data(), obj, "Retrieve data object from a wrapped JS object (#7524)" );
|
||||
})
|
||||
|
||||
test(".data(String) and .data(String, Object)", function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue