Added test case for Jira issue XALANC-616
diff --git a/tests/conf-gold/whitespace/whitespace36.out b/tests/conf-gold/whitespace/whitespace36.out
new file mode 100644
index 0000000..9aa81f1
--- /dev/null
+++ b/tests/conf-gold/whitespace/whitespace36.out
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><out/>
\ No newline at end of file
diff --git a/tests/conf/whitespace/whitespace36.xml b/tests/conf/whitespace/whitespace36.xml
new file mode 100644
index 0000000..fadd287
--- /dev/null
+++ b/tests/conf/whitespace/whitespace36.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<foo>
+<boo>
+</boo>
+</foo>
diff --git a/tests/conf/whitespace/whitespace36.xsl b/tests/conf/whitespace/whitespace36.xsl
new file mode 100644
index 0000000..7699994
--- /dev/null
+++ b/tests/conf/whitespace/whitespace36.xsl
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>                                                                                   
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
+
+  <!-- FileName: whitespace36 -->
+  <!-- Document: http://www.w3.org/TR/xslt -->
+  <!-- DocVersion: 19991116 -->
+  <!-- Section: 3.4 -->
+  <!-- Creator: Dmitry Hayes (dmitryh@ca.ibm.com) and David Bertoni (dbertoni@apache.org) -->
+  <!-- Purpose: Test for whitespace stripping from source documents when converting
+                a node set to a string. -->
+  <!-- Elaboration: Xalan-C neglected to strip whitespace text nodes that were
+       descendants of a document or element node when calculating the string value. -->
+
+<xsl:strip-space elements="*" />                                                                                
+
+<xsl:template match="/">
+  <out>
+    <xsl:apply-templates/>
+  </out>
+</xsl:template>
+
+<xsl:template match="*"> 
+  <xsl:if test="string-length(.) != 0 and . != '' and string(.) != ''"> 
+    <xsl:text>Whitespace text nodes for for the element node "</xsl:text>
+    <xsl:value-of select="name(.)"/>
+    <xsl:text>" were not stripped!"</xsl:text> 
+  </xsl:if>
+  <xsl:apply-templates/>
+</xsl:template> 
+
+
+  <!--
+   * Licensed to the Apache Software Foundation (ASF) under one
+   * or more contributor license agreements. See the NOTICE file
+   * distributed with this work for additional information
+   * regarding copyright ownership. The ASF licenses this file
+   * to you under the Apache License, Version 2.0 (the  "License");
+   * you may not use this file except in compliance with the License.
+   * You may obtain a copy of the License at
+   *
+   *     http://www.apache.org/licenses/LICENSE-2.0
+   *
+   * Unless required by applicable law or agreed to in writing, software
+   * distributed under the License is distributed on an "AS IS" BASIS,
+   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   * See the License for the specific language governing permissions and
+   * limitations under the License.
+  -->
+
+</xsl:stylesheet>