Fix two more errors in jspxml.dtd, found by validating the file in Eclipse IDE.
1. Complained for missing '(' in definition of jsp:text.
2. Element jsp:fallback (mentioned in jsp:plugin) was not defined.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1561732 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/java/javax/servlet/jsp/resources/jspxml.dtd b/java/javax/servlet/jsp/resources/jspxml.dtd
index 7536eac..c6f0998 100644
--- a/java/javax/servlet/jsp/resources/jspxml.dtd
+++ b/java/javax/servlet/jsp/resources/jspxml.dtd
@@ -186,5 +186,6 @@
     value           CDATA           #REQUIRED
 >
 
-<!ELEMENT jsp:text #PCDATA>
+<!ELEMENT jsp:text (#PCDATA)>
 
+<!ELEMENT jsp:fallback %Body;>