Made jQuery('<div/>') and jQuery('<div></div>') use the same code path (making the second one faster). Fixes #5293.
This commit is contained in:
parent
d933e9c26d
commit
c4c820efff
2 changed files with 5 additions and 2 deletions
|
@ -310,7 +310,7 @@ test("isXMLDoc - XML", function() {
|
|||
}
|
||||
|
||||
test("jQuery('html')", function() {
|
||||
expect(13);
|
||||
expect(15);
|
||||
|
||||
reset();
|
||||
jQuery.foo = false;
|
||||
|
@ -339,6 +339,9 @@ test("jQuery('html')", function() {
|
|||
ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" );
|
||||
|
||||
ok( !jQuery("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" );
|
||||
|
||||
ok( jQuery("<div></div>")[0], "Create a div with closing tag." );
|
||||
ok( jQuery("<table></table>")[0], "Create a table with closing tag." );
|
||||
});
|
||||
|
||||
test("jQuery('html', context)", function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue