Regarding the new test cases for the xml:base issue, I believe the issue raised is that the input documents use ID attributes rather than xml:id attributes. In fact, they use a mixture of both. Here is the xmlbase-c14n11spec-input.xml file: <!DOCTYPE doc [ <!ATTLIST e2 xml:space (default|preserve) 'preserve'> <!ATTLIST e3 id ID #IMPLIED> ]> <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org" xml:base="http://www.example.com/something/else"> <e1> <e2 xmlns="" xml:id="abc" xml:base="../bar/"> <e3 id="E3" xml:base="foo"/> </e2> </e1> </doc> I suggest we change these to use all xml:id attributes in order to be consistent with the rest of the test cases: <!DOCTYPE doc [ <!ATTLIST e2 xml:space (default|preserve) 'preserve'> <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org" xml:base="http://www.example.com/something/else"> <e1> <e2 xmlns="" xml:id="abc" xml:base="../bar/"> <e3 xml:id="E3" xml:base="foo"/> </e2> </e1> </doc> If there are any objections or questions, let me know. Thanks, SeanReceived on Tuesday, 30 October 2007 18:12:07 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Tuesday, 8 January 2008 14:22:02 GMT