Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Removed 'abbr' from self-closing tags list. Fixes #5167.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/manipulation.js
|
|
@@ -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+;/, |
|
|