Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sirois2012-10-26 18:08:14 +0000
committerPaul Webster2012-10-26 19:21:52 +0000
commit00d991835994a92e822e6d0dbb214359a45336ef (patch)
tree7dda1dcba6c97881216a8988d6559687a19634b5
parent62b1e0870ed66946f84210f92d70a678b9210670 (diff)
downloadeclipse.platform.ua-00d991835994a92e822e6d0dbb214359a45336ef.tar.gz
eclipse.platform.ua-00d991835994a92e822e6d0dbb214359a45336ef.tar.xz
eclipse.platform.ua-00d991835994a92e822e6d0dbb214359a45336ef.zip
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java b/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
index 5f054e2c2..950ec745b 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
@@ -60,6 +60,8 @@ public class XHTMLCharsetHandler extends ProcessorHandler {
if ("div".equalsIgnoreCase(elementName)) return true; //$NON-NLS-1$
if ("script".equalsIgnoreCase(elementName)) return true; //$NON-NLS-1$
if ("textarea".equalsIgnoreCase(elementName)) return true; //$NON-NLS-1$
+ if ("iframe".equalsIgnoreCase(elementName)) return true; //$NON-NLS-1$
+ if ("title".equalsIgnoreCase(elementName)) return true; //$NON-NLS-1$
return false;
}
}

Back to the top