Removed 'abbr' from self-closing tags list. Fixes #5167.
authorjeresig <jeresig@gmail.com>
Thu, 17 Dec 2009 20:04:07 +0000 (15:04 -0500)
committerjeresig <jeresig@gmail.com>
Thu, 17 Dec 2009 20:04:07 +0000 (15:04 -0500)
src/manipulation.js

index d5523dd..cfb9c9d 100644 (file)
@@ -1,7 +1,7 @@
 var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
        rleadingWhitespace = /^\s+/,
        rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g,
-       rselfClosing = /^(?:abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i,
+       rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,
        rtagName = /<([\w:]+)/,
        rtbody = /<tbody/i,
        rhtml = /<|&\w+;/,