Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java
index 2c03f25bf..5331479bd 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/html/IIntroHTMLConstants.java
@@ -42,6 +42,7 @@ public interface IIntroHTMLConstants {
String ELEMENT_H4 = "H4"; //$NON-NLS-1$
String ELEMENT_PARAGRAPH = "P"; //$NON-NLS-1$
String ELEMENT_STYLE = "STYLE"; //$NON-NLS-1$
+ String ELEMENT_IFrame = "iFrame"; //$NON-NLS-1$
/* HTML attribute names */
String ATTRIBUTE_ID = "id"; //$NON-NLS-1$
@@ -53,6 +54,8 @@ public interface IIntroHTMLConstants {
String ATTRIBUTE_TYPE = "type"; //$NON-NLS-1$
String ATTRIBUTE_DATA = "data"; //$NON-NLS-1$
String ATTRIBUTE_ALT = "alt"; //$NON-NLS-1$
+ String ATTRIBUTE_FRAMEBORDER = "frameborder"; //$NON-NLS-1$
+ String ATTRIBUTE_SCROLLING = "scrolling"; //$NON-NLS-1$
/* HTML attribute values */
String LINK_REL = "stylesheet"; //$NON-NLS-1$

Back to the top