jQuery: The Write Less, Do More JavaScript Library

Changeset 4293

Show
Ignore:
Timestamp:
12/21/07 05:47:33 (8 months ago)
Author:
davidserduke
Message:

Fixed #2084 by added embed to the list of elements where it is ok to have self closing xhtml.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/core.js

    r4287 r4293  
    935935                // Fix "XHTML"-style tags in all browsers 
    936936                elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){ 
    937                     return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ? 
     937                    return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? 
    938938                        all : 
    939939                        front + "></" + tag + ">";