Cleaned up divs that should've been removed after a test run.

This commit is contained in:
jeresig 2010-01-25 15:18:51 -05:00
parent d24443fb55
commit e01ff6cda1

View File

@ -977,7 +977,7 @@ test("empty()", function() {
}); });
test("jQuery.cleanData", function() { test("jQuery.cleanData", function() {
expect(10); expect(14);
var type, pos, div, child; var type, pos, div, child;
@ -1007,6 +1007,9 @@ test("jQuery.cleanData", function() {
// Should do nothing // Should do nothing
pos = "Inner"; pos = "Inner";
child.trigger("click"); child.trigger("click");
// Should trigger 2
div.remove();
type = "html"; type = "html";
@ -1023,6 +1026,9 @@ test("jQuery.cleanData", function() {
// Should do nothing // Should do nothing
pos = "Inner"; pos = "Inner";
child.trigger("click"); child.trigger("click");
// Should trigger 2
div.remove();
function getDiv() { function getDiv() {
var div = jQuery("<div class='outer'><div class='inner'></div></div>").click(function(){ var div = jQuery("<div class='outer'><div class='inner'></div></div>").click(function(){