Added iframe, object and applet to closingTags list

in needsClosingTag function
This commit is contained in:
julmis
2005-04-28 20:56:07 +00:00
parent c39748f4b4
commit c223e47712
+1 -1
View File
@@ -2216,7 +2216,7 @@ HTMLArea.isBlockElement = function(el) {
};
HTMLArea.needsClosingTag = function(el) {
var closingTags = " head script style div span tr td tbody table em strong font a title ";
var closingTags = " head script style div span tr td tbody table em strong font a title iframe object applet ";
return (closingTags.indexOf(" " + el.tagName.toLowerCase() + " ") != -1);
};