[Mono-bugs] [Bug 47854][Cri] Changed - Xsl broken when loading from a XmlDocument or XmlTextReader
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 24 Aug 2003 14:44:17 -0400 (EDT)
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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=47854
--- shadow/47854 2003-08-24 14:29:05.000000000 -0400
+++ shadow/47854.tmp.2364 2003-08-24 14:44:17.000000000 -0400
@@ -1,22 +1,21 @@
Bug#: 47854
-Product: Mono/Class Libraries
+Product: Mono/MCS
Version: unspecified
OS: All
OS Details:
Status: NEW
Resolution:
-Severity:
-Priority: Major
-Component: System.XML
+Severity: Unknown
+Priority: Critical
+Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: gonzalo@ximian.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
-Cc:
Summary: Xsl broken when loading from a XmlDocument or XmlTextReader
Get the attachments, compile and run this program:
---
using System;
using System.Xml;
@@ -68,6 +67,17 @@
------- Additional Comments From gonzalo@ximian.com 2003-08-24 14:29 -------
Created an attachment (id=5202)
XSL transform
+
+------- Additional Comments From bmaurer@users.sf.net 2003-08-24 14:44 -------
+It looks like mcs is not emitting the Load call in this:
+
+class Test {
+ static void Main ()
+ {
+ System.Xml.Xsl.XslTransform tr = new System.Xml.Xsl.XslTransform ();
+ tr.Load ((System.Xml.XmlDocument)null);
+ }
+}