diff options
author | Colin Snover <github.com@zetafleet.com> | 2011-02-08 12:13:27 -0600 |
---|---|---|
committer | Colin Snover <github.com@zetafleet.com> | 2011-02-08 12:13:27 -0600 |
commit | d92dc2902c1e49642ce5148f7e082d880e77a2c5 (patch) | |
tree | 27ddd52d87ae3c207024c75d48a486223440014e /test | |
parent | b46dff39c35ae05f92f6909ff8d07aa470e4a8d4 (diff) | |
download | jquery-d92dc2902c1e49642ce5148f7e082d880e77a2c5.tar.gz jquery-d92dc2902c1e49642ce5148f7e082d880e77a2c5.zip |
Revert portions of 7acb141ed7f2dedd950bb65acf878098640d081e that attempt to use a function to hide jQuery metadata from JSON.stringify since this does not work reliably cross-browser (fails in Fx3.5, O11, Saf4).
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/data.js | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/test/unit/data.js b/test/unit/data.js index 1ce512c42..455b923aa 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -22,7 +22,7 @@ function dataTests (elem) { strictEqual( jQuery.hasData(elem), false, "jQuery.hasData agrees no data exists initially" ); var dataObj = jQuery.data(elem); - equals( typeof dataObj, elem.nodeType ? "object" : "function", "Calling data with no args gives us a data object reference" ); + equals( typeof dataObj, "object", "Calling data with no args gives us a data object reference" ); strictEqual( jQuery.data(elem), dataObj, "Calling jQuery.data returns the same data object when called multiple times" ); strictEqual( jQuery.hasData(elem), false, "jQuery.hasData agrees no data exists even when an empty data obj exists" ); @@ -465,15 +465,4 @@ test(".removeData()", function() { div.removeData("test.foo"); equals( div.data("test.foo"), undefined, "Make sure data is intact" ); -}); - -if (window.JSON && window.JSON.stringify) { - test("JSON serialization (#8108)", function () { - expect(1); - - var obj = { foo: "bar" }; - jQuery.data(obj, "hidden", true); - - equals( JSON.stringify(obj), '{"foo":"bar"}', "Expando is hidden from JSON.stringify" ); - }); -}
\ No newline at end of file +});
\ No newline at end of file |