Backing out cec68e2b00
, was causing serialize tests to fail. Un-fixes #5566.
This commit is contained in:
parent
b4bb6e1126
commit
29616e60c8
2 changed files with 72 additions and 92 deletions
|
@ -352,7 +352,7 @@ jQuery.fn.extend({
|
||||||
root(this[i], first) :
|
root(this[i], first) :
|
||||||
this[i],
|
this[i],
|
||||||
i > 0 || results.cacheable || this.length > 1 ?
|
i > 0 || results.cacheable || this.length > 1 ?
|
||||||
jQuery(fragment).clone(true)[0] :
|
fragment.cloneNode(true) :
|
||||||
fragment
|
fragment
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -381,26 +381,6 @@ test("append(Function) with incoming value", function() {
|
||||||
QUnit.reset();
|
QUnit.reset();
|
||||||
});
|
});
|
||||||
|
|
||||||
test("append the same fragment with events (Bug #6997, 5566)", function () {
|
|
||||||
expect(2);
|
|
||||||
stop(1000);
|
|
||||||
|
|
||||||
var element = jQuery("<a class='test6997'></a>").click(function () {
|
|
||||||
ok(true, "Append second element events work");
|
|
||||||
});
|
|
||||||
|
|
||||||
jQuery("#listWithTabIndex li").append(element)
|
|
||||||
.find('a.test6997').eq(1).click();
|
|
||||||
|
|
||||||
element = jQuery("<li class='test6997'></li>").click(function () {
|
|
||||||
ok(true, "Before second element events work");
|
|
||||||
start();
|
|
||||||
});
|
|
||||||
|
|
||||||
jQuery("#listWithTabIndex li").before(element);
|
|
||||||
jQuery("#listWithTabIndex li.test6997").eq(1).click();
|
|
||||||
});
|
|
||||||
|
|
||||||
test("appendTo(String|Element|Array<Element>|jQuery)", function() {
|
test("appendTo(String|Element|Array<Element>|jQuery)", function() {
|
||||||
expect(16);
|
expect(16);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue