diff options
author | Michał Z. Gołębiowski <michal.golebiowski@laboratorium.ee> | 2013-03-12 21:06:25 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-03-12 21:06:25 -0400 |
commit | 79992d752393d80822a4f8be2b7bec3ecdd60f6a (patch) | |
tree | 2c97c4bda379e70501b15f106f5efa241c220fe3 /test/unit | |
parent | ae3524642c54ec4df09733de03c169f4fd43ac34 (diff) | |
download | jquery-79992d752393d80822a4f8be2b7bec3ecdd60f6a.tar.gz jquery-79992d752393d80822a4f8be2b7bec3ecdd60f6a.zip |
Edited comments and minor adjustments. Fixes #13553. Closes gh-1195.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/ajax.js | 2 | ||||
-rw-r--r-- | test/unit/attributes.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 040485098..79f410406 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -1468,7 +1468,7 @@ module( "ajax", { strictEqual( ajaxXML.find("tab").length, 3, "Parsed node was added properly" ); } }); - + ajaxTest( "#13292 - jQuery.ajax() - converter is bypassed for 204 requests", 3, { url: "data/nocontent.php", dataType: "testing", diff --git a/test/unit/attributes.js b/test/unit/attributes.js index aa232e887..7d0366b90 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -446,7 +446,7 @@ test( "attr(String, Object)", function() { // Setting attributes on svg elements (bug #3116) var $svg = jQuery( - "<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' baseProfile='full' width='200' height='200'>" + + "<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' baseProfile='full' width='200' height='200'>" + "<circle cx='200' cy='200' r='150' />" + "</svg>" |