From: Richard Worth Date: Sat, 13 Dec 2008 10:57:10 +0000 (+0000) Subject: Added test for #3664 - Dialog init fails on disconnected DOM Element after .remove() X-Git-Tag: 1.6rc3~276 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6bdc9f7c967c582869aa6ef9803c4a8fcdd24e93;p=jquery-ui.git Added test for #3664 - Dialog init fails on disconnected DOM Element after .remove() --- diff --git a/tests/dialog.js b/tests/dialog.js index 95e123a92..438db2e9d 100644 --- a/tests/dialog.js +++ b/tests/dialog.js @@ -115,7 +115,7 @@ function margin(el, side) { module("dialog"); test("init", function() { - expect(6); + expect(7); $("
").appendTo('body').dialog().remove(); ok(true, '.dialog() called on element'); @@ -124,7 +124,10 @@ test("init", function() { ok(true, '.dialog() called on empty collection'); $('
').dialog().remove(); - ok(true, '.dialog() called on disconnected DOMElement'); + ok(true, '.dialog() called on disconnected DOMElement - never connected'); + + $('
').appendTo('body').remove().dialog().remove(); + ok(true, '.dialog() called on disconnected DOMElement - removed'); $('
').dialog().dialog("foo").remove(); ok(true, 'arbitrary method called after init');