Author: dmaliarevich
Date: 2008-04-09 05:58:28 -0400 (Wed, 09 Apr 2008)
New Revision: 7443
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2026, Fixes "td" size changing.
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java 2008-04-09
09:46:51 UTC (rev 7442)
+++
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java 2008-04-09
09:58:28 UTC (rev 7443)
@@ -26,11 +26,16 @@
private static Set withoutPseudoContentSet = new HashSet();
static {
- withoutPseudoContentSet.add("br");
- withoutPseudoContentSet.add("nobr");
- withoutPseudoContentSet.add("input");
- withoutPseudoContentSet.add("textarea");
- withoutPseudoContentSet.add("select");
+ /*
+ *
http://jira.jboss.com/jira/browse/JBIDE-2026
+ * Fixes "td" size changing.
+ */
+ withoutPseudoContentSet.add("td"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("br"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("nobr"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("input"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("textarea"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("select"); //$NON-NLS-1$
}
public static final VpePseudoContentCreator getInstance() {