Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2007-08-08 10:27:38 +0400
committerAtsushi Eno <atsushieno@gmail.com>2007-08-08 10:27:38 +0400
commit30e916409ce5769cee7ef63d04dca4adeefd776a (patch)
tree99ef40c0ce2ea43c50d01f87c6a3530f795fd4cc /mcs/class/System.XML/Mono.Xml.Xsl.Operations
parent44ec01c8f2f9afc9a8141a76efe1eb1076cf0e4b (diff)
2007-08-08 Atsushi Enomoto <atsushi@ximian.com>
* XslCallTemplate.cs : significant whitespace should be allowed as its content. Fixed bug #82357. * XslTransformTests.cs : added test for bug #82357. svn path=/trunk/mcs/; revision=83634
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl.Operations')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog5
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCallTemplate.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
index b0ae6ac0d15..bc04949709b 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-08 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XslCallTemplate.cs : significant whitespace should be allowed
+ as its content. Fixed bug #82357.
+
2007-06-28 Atsushi Enomoto <atsushi@ximian.com>
* XslText.cs XslMessage.cs XslVariable.cs XslNotSupportedOperation.cs
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCallTemplate.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCallTemplate.cs
index accc3a2d712..b73ffed5ae7 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCallTemplate.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCallTemplate.cs
@@ -55,6 +55,7 @@ namespace Mono.Xml.Xsl.Operations {
switch (c.Input.NodeType) {
case XPathNodeType.Comment:
case XPathNodeType.ProcessingInstruction:
+ case XPathNodeType.SignificantWhitespace:
case XPathNodeType.Whitespace:
continue;
case XPathNodeType.Element: