diff options
author | Sai Wong <sai.wong@huffingtonpost.com> | 2012-10-15 14:20:36 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-10-20 15:27:43 -0400 |
commit | 2b0e720406c42a4065010ba94e7adb7170ba74c3 (patch) | |
tree | 9b895ae823c20230f7be9d33bd3d9c4359c34600 /test | |
parent | 144b8bfeadc5316656105e1a10a31ba5348ef5d6 (diff) | |
download | jquery-2b0e720406c42a4065010ba94e7adb7170ba74c3.tar.gz jquery-2b0e720406c42a4065010ba94e7adb7170ba74c3.zip |
Fix #12048. Set attributes for XML fragments. Close gh-965.
Diffstat (limited to 'test')
-rw-r--r-- | test/.jshintrc | 1 | ||||
-rw-r--r-- | test/data/testinit.js | 15 | ||||
-rw-r--r-- | test/unit/attributes.js | 11 |
3 files changed, 27 insertions, 0 deletions
diff --git a/test/.jshintrc b/test/.jshintrc index 11e1c0361..ec1b4fa1e 100644 --- a/test/.jshintrc +++ b/test/.jshintrc @@ -41,6 +41,7 @@ "testIframe": true, "testIframeWithCallback": true, "createDashboardXML": true, + "createXMLFragment": true, "moduleTeardown": true, "testFoo": true, "foobar": true, diff --git a/test/data/testinit.js b/test/data/testinit.js index 99b0f11e1..6f9fd46e6 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -102,6 +102,21 @@ var createWithFriesXML = function() { return jQuery.parseXML(string); }; +var createXMLFragment = function() { + var xml, frag; + if ( window.ActiveXObject ) { + xml = new ActiveXObject("msxml2.domdocument"); + } else { + xml = document.implementation.createDocument( "", "", null ); + } + + if ( xml ) { + frag = xml.createElement("data"); + } + + return frag; +}; + var fireNative; if ( document.createEvent ) { fireNative = function( node, type ) { diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 7795b88b5..9ead9a9b9 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -522,6 +522,17 @@ test( "attr(String, Object) - Loaded via XML document", function() { equal( titles[ 1 ], "Users", "attr() in XML context: Check second title" ); }); +test( "attr(String, Object) - Loaded via XML fragment", function() { + expect( 2 ); + var frag = createXMLFragment(), + $frag = jQuery( frag ); + + $frag.attr( "test", "some value" ); + equal( $frag.attr("test"), "some value", "set attribute" ); + $frag.attr( "test", null ); + equal( $frag.attr("test"), undefined, "remove attribute" ); +}); + test( "attr('tabindex')", function() { expect( 8 ); |