The following may occur in the ATTLIST tag:
monarchy
republic
other
Change the dtd so that the xml on the left passes validation and the xml on the right fails validation.
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE country SYSTEM "country.dtd"> <country name = "United Kingdom" constitution = "monarchy" population = "58m" />
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE country SYSTEM "country.dtd"> <country name = "United Kingdom" constitution = "democracy" population = "58m" />
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE country SYSTEM "country.dtd"> <country name = "Rockall" constitution = "other" />
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE country SYSTEM "country.dtd"> <country name = "United Kingdom" population = "58m" />