aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/manipulation.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r--test/unit/manipulation.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index c487efacb..38d38a2b6 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -2105,3 +2105,17 @@ test( "Make sure specific elements with content created correctly (#13232)", 20,
ok( jQuery.nodeName( this, results[ i ] ) );
});
});
+
+test( "Validate creation of multiple quantities of certain elements (#13818)", 44, function() {
+ var tags = [ "thead", "tbody", "tfoot", "colgroup", "col", "caption", "tr", "th", "td", "optgroup", "option" ];
+
+ jQuery.each( tags, function( index, tag ) {
+ jQuery( "<" + tag + "/><" + tag + "/>" ).each(function() {
+ ok( jQuery.nodeName( this, tag ), tag + " empty elements created correctly" );
+ });
+
+ jQuery( "<" + this + "></" + tag + "><" + tag + "></" + tag + ">" ).each(function() {
+ ok( jQuery.nodeName( this, tag ), tag + " elements with closing tag created correctly" );
+ });
+ });
+});