Ticket #5224: 5224_2.patch
File 5224_2.patch, 564 bytes (added by , 13 years ago) |
---|
-
_source/core/htmlparser.js
172 172 if ( ( tagName = parts[ 3 ] ) ) 173 173 { 174 174 tagName = tagName.toLowerCase(); 175 176 // There are some tag names that can break things, so let's 177 // simply ignore them when parsing. (#5224) 178 if ( /="/.test( tagName ) ) 179 continue; 180 175 181 var attribs = {}, 176 182 attribMatch, 177 183 attribsPart = parts[ 4 ],