rtrim = /^\s+|\s+$/g,
// Match a standalone tag
- rsingleTag = /^<(\w+)\s*\/?>$/,
+ rsingleTag = /<(\w+)\s*\/?>(?:<\/\1>)?$/,
// Keep a UserAgent string for use with jQuery.browser
userAgent = navigator.userAgent.toLowerCase(),
}
test("jQuery('html')", function() {
- expect(13);
+ expect(15);
reset();
jQuery.foo = false;
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() {