< prev index next >

test/java/util/ResourceBundle/Control/XmlRB.xml

Print this page
rev 13658 : 8213325: (props) Properties.loadFromXML does not fully comply with the spec
Reviewed-by: alanb, rriggs, dfuchs, naoto

*** 1,17 **** <?xml version="1.0" encoding="UTF-8"?> <!----> ! <!-- DTD for properties --> ! <!DOCTYPE properties [ ! <!ELEMENT properties ( comment?, entry* ) > ! <!ATTLIST properties version CDATA #FIXED "1.0"> ! <!ELEMENT comment (#PCDATA) > ! <!ELEMENT entry (#PCDATA) > ! <!ATTLIST entry key CDATA #REQUIRED> ! ]> ! <properties> <comment>Test data for XMLResourceBundleTest.java</comment> <entry key="type">XML</entry> </properties> --- 1,9 ---- <?xml version="1.0" encoding="UTF-8"?> <!----> ! <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> <comment>Test data for XMLResourceBundleTest.java</comment> <entry key="type">XML</entry> </properties>
< prev index next >