bug 6158; fixing replaceWith from throwing errors on non existant elements; fixing semicolon
This commit is contained in:
parent
c9ef09c800
commit
dd100bf5ac
1 changed files with 2 additions and 2 deletions
|
@ -801,7 +801,7 @@ var testReplaceWith = function(val) {
|
||||||
equals( set.length, 1, "Replace the disconnected node." );
|
equals( set.length, 1, "Replace the disconnected node." );
|
||||||
|
|
||||||
var non_existant = jQuery('#does-not-exist').replaceWith( val("<b>should not throw an error</b>") );
|
var non_existant = jQuery('#does-not-exist').replaceWith( val("<b>should not throw an error</b>") );
|
||||||
equals( non_existant.length, 0, "Length of non existant element." )
|
equals( non_existant.length, 0, "Length of non existant element." );
|
||||||
|
|
||||||
var $div = jQuery("<div class='replacewith'></div>").appendTo("body");
|
var $div = jQuery("<div class='replacewith'></div>").appendTo("body");
|
||||||
// TODO: Work on jQuery(...) inline script execution
|
// TODO: Work on jQuery(...) inline script execution
|
||||||
|
|
Loading…
Add table
Reference in a new issue