Tests the "Name Token" VC for the NMTOKENS attribute type.
<!DOCTYPE root [
<!ELEMENT root EMPTY>
<!ATTLIST root
token NMTOKEN #REQUIRED
>
<!-- tests the "name token' VC for an NMTOKENS value -->
]>
<root token="now is the time!?"/>
| Expected result | Actual result for com.bluecast.xml.Piccolo |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
<attributes>
<attribute>
<namespaceURI/>
<localName>token</localName>
<qualifiedName>token</qualifiedName>
<value>now\sis\sthe\stime!?</value>
<type>NMTOKEN</type>
</attribute>
</attributes>
</startElement>
<endElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
</endElement>
<endDocument/>
</ConformanceResults>
| <?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
<startDocument/>
<startElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
<attributes>
<attribute>
<namespaceURI/>
<localName>token</localName>
<qualifiedName>token</qualifiedName>
<value>now\sis\sthe\stime!?</value>
<type>NMTOKEN</type>
</attribute>
</attributes>
</startElement>
<endElement>
<namespaceURI/>
<localName>root</localName>
<qualifiedName>root</qualifiedName>
</endElement>
<endDocument/>
</ConformanceResults>
|