Ticket #4351: 4351_2.patch
File 4351_2.patch, 645 bytes (added by , 14 years ago) |
---|
-
_source/core/htmlparser.js
18 18 19 19 (function() 20 20 { 21 var attribsRegex = /([\w :]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,21 var attribsRegex = /([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g, 22 22 emptyAttribs = {checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1}; 23 23 24 24 CKEDITOR.htmlParser.prototype =