Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcrogers2010-04-23 15:56:29 +0000
committercrogers2010-04-23 15:56:29 +0000
commit06a20c3751d043d71132a481878cd23393ae5fd0 (patch)
treea72383548e870fec745513e793f6a26820877d29
parent77504b9a62bc8cc5143b9b18d6396611dc6ec42c (diff)
downloadwebtools.jsf-06a20c3751d043d71132a481878cd23393ae5fd0.tar.gz
webtools.jsf-06a20c3751d043d71132a481878cd23393ae5fd0.tar.xz
webtools.jsf-06a20c3751d043d71132a481878cd23393ae5fd0.zip
format data for readability
-rw-r--r--jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/utils/HTMLUtil.java22
1 files changed, 15 insertions, 7 deletions
diff --git a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/utils/HTMLUtil.java b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/utils/HTMLUtil.java
index a4400d21c..f189f78b0 100644
--- a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/utils/HTMLUtil.java
+++ b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/utils/HTMLUtil.java
@@ -50,13 +50,21 @@ public class HTMLUtil {
* the HTML tags considered to be hidden
*/
static final String[] HiddenTags = new String[] {
- IHTMLConstants.TAG_APPLET, IHTMLConstants.TAG_AREA,
- IHTMLConstants.TAG_BASE, IHTMLConstants.TAG_BASEFONT,
- IHTMLConstants.TAG_HEAD, IHTMLConstants.TAG_IFRAME,
- IHTMLConstants.TAG_ISINDEX, IHTMLConstants.TAG_META,
- IHTMLConstants.TAG_NOEMBED, IHTMLConstants.TAG_NOFRAMES,
- IHTMLConstants.TAG_NOSCRIPT, IHTMLConstants.TAG_SCRIPT,
- IHTMLConstants.TAG_STYLE, IHTMLConstants.TAG_TITLE,
+ IHTMLConstants.TAG_APPLET,
+ IHTMLConstants.TAG_AREA,
+ IHTMLConstants.TAG_BASE,
+ IHTMLConstants.TAG_BASEFONT,
+ IHTMLConstants.TAG_HEAD,
+ IHTMLConstants.TAG_IFRAME,
+ IHTMLConstants.TAG_ISINDEX,
+ IHTMLConstants.TAG_LINK,
+ IHTMLConstants.TAG_META,
+ IHTMLConstants.TAG_NOEMBED,
+ IHTMLConstants.TAG_NOFRAMES,
+ IHTMLConstants.TAG_NOSCRIPT,
+ IHTMLConstants.TAG_SCRIPT,
+ IHTMLConstants.TAG_STYLE,
+ IHTMLConstants.TAG_TITLE,
IHTMLConstants.TAG_PARAM };
/**

Back to the top