Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78142 --- shadow/78142 2006-04-19 17:30:04.000000000 -0400 +++ shadow/78142.tmp.4887 2006-04-19 17:30:04.000000000 -0400 @@ -0,0 +1,41 @@ +Bug#: 78142 +Product: Mono: Class Libraries +Version: 1.1 +OS: other +OS Details: RHEL 3.4 +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Sys.XML +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: OuterXML has incorrect value + +Please fill in this template when reporting a bug, unless you know what +you are doing. +Description of Problem: +The OuterXML member drops some attribute name/values. + +Steps to reproduce the problem: +XmlDocument doc = new XmlDocument(); +doc.LoadXml("<a id=\"id\" name=\"name\">link</a>"); +XPathNodeIterator iter = doc.CreateNavigator().Select("//[EMAIL PROTECTED]'id']"); +iter.MoveNext(); +Console.WriteLine(iter.Current.OuterXml); + +Actual Results: +<a id="id" ="">link</a> + +Expected Results: +<a id="id" name="name">link</a> + +How often does this happen? +Always + +Additional Information: +It always seems to drop one attribute name/value pair _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
