Bug 11594 - Attributes with duplicate expanded name not rejected
Summary: Attributes with duplicate expanded name not rejected
Status: NEW
Alias: None
Product: Crimson
Classification: Unclassified
Component: other (show other bugs)
Version: 1.1
Hardware: Other other
: P3 normal (vote)
Target Milestone: ---
Assignee: Edwin Goei
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-09 16:52 UTC by Michael Kay
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Kay 2002-08-09 16:52:21 UTC
The following document is namespace-invalid:

<x xmlns:n1="http://www.w3.org" 
xmlns:n2="http://www.w3.org" > 
<!-- two attributes with the same name - this is namespace-invalid -->
<bad n1:a="1" n2:a="2" /> 
</x> 

Crimson (the version included in JDK 1.4) doesn't reject it (when namespace 
processing is switched on).

Michael Kay