[Mono-bugs] [Bug 78142][Nor] Changed - OuterXML has incorrect value

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Apr 20 03:38:33 EDT 2006


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 atsushi at ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=78142

--- shadow/78142	2006-04-19 17:30:04.000000000 -0400
+++ shadow/78142.tmp.12853	2006-04-20 03:38:33.000000000 -0400
@@ -1,15 +1,15 @@
 Bug#: 78142
 Product: Mono: Class Libraries
 Version: 1.1
 OS: other
 OS Details: RHEL 3.4
-Status: NEW   
+Status: NEEDINFO   
 Resolution: 
-Severity: 
-Priority: Wishlist
+Severity: Unknown
+Priority: Normal
 Component: Sys.XML
 AssignedTo: atsushi at ximian.com                            
 ReportedBy: yfriedman at fnfr.com               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
 URL: 
@@ -36,6 +36,27 @@
 
 How often does this happen? 
 Always
 
 Additional Information:
 It always seems to drop one attribute name/value pair
+
+------- Additional Comments From atsushi at ximian.com  2006-04-20 03:38 -------
+Hmm, I tried it but couldn't reproduce the problem. Please provide
+ready-to-compile repro code like below.
+
+using System;
+using System.Xml;
+using System.Xml.XPath;
+
+public class Test
+{
+        public static void Main ()
+        {
+XmlDocument doc = new XmlDocument();
+doc.LoadXml("<a id=\"id\" name=\"name\">link</a>");
+XPathNodeIterator iter = doc.CreateNavigator().Select("//*[@id='id']");
+iter.MoveNext();
+Console.WriteLine(iter.Current.OuterXml);
+        }
+}
+


More information about the mono-bugs mailing list