Bug 469782 - Low vision not working properly
diff --git a/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/CurrentStylesImpl.java b/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/CurrentStylesImpl.java
index a2c8066..2107417 100644
--- a/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/CurrentStylesImpl.java
+++ b/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/CurrentStylesImpl.java
@@ -225,9 +225,13 @@
 		for (int i = 0; i < tmpNL.getLength(); i++) {
 			Node tmpN2 = tmpNL.item(i);
 			if (tmpN2 instanceof Text) {
-				if (tmpN2.getNodeValue().trim().length() > 0) {
-					flag = true;
-					childs.add(tmpN2.getNodeValue());
+				if ("#text".equals(tmpN2.getNodeName())) {
+					if (tmpN2.getNodeValue().trim().length() > 0) {
+						flag = true;
+						childs.add(tmpN2.getNodeValue());
+					}
+				} else {
+					System.out.println("unkonwn node: "+ tmpN2.getNodeName());
 				}
 			}
 		}