Fixed #2084 by added embed to the list of elements where it is ok to have self closin...
authorDavid Serduke <davidserduke@gmail.com>
Fri, 21 Dec 2007 05:47:33 +0000 (05:47 +0000)
committerDavid Serduke <davidserduke@gmail.com>
Fri, 21 Dec 2007 05:47:33 +0000 (05:47 +0000)
src/core.js

index 10db3ed..b5a1c70 100644 (file)
@@ -934,7 +934,7 @@ jQuery.extend({
                        if ( typeof elem == "string" ) {
                                // Fix "XHTML"-style tags in all browsers
                                elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
-                                       return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ?
+                                       return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
                                                all :
                                                front + "></" + tag + ">";
                                });