dmarston 01/03/01 12:27:57
Added: test/tests/conf/lre lre19.xsl lre19.xml Log: New case: names with leading underscores. Revision Changes Path 1.1 xml-xalan/test/tests/conf/lre/lre19.xsl Index: lre19.xsl =================================================================== <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:_ped="http://www.ped.com"> <!-- FileName: lre19 --> <!-- Document: http://www.w3.org/TR/xslt --> <!-- DocVersion: 19991116 --> <!-- Section: 7.1.2 Creating Elements with xsl:element. --> <!-- Creator: David Marston --> <!-- Purpose: Test use of leading underscore in names. --> <xsl:template match="/"> <root> <xsl:text> </xsl:text> <xsl:element name="_an_elem" namespace="{docs/a/@href}"/> <xsl:text> </xsl:text> <xsl:element name="_ped:_an_elem"/> </root> </xsl:template> </xsl:stylesheet> 1.1 xml-xalan/test/tests/conf/lre/lre19.xml Index: lre19.xml =================================================================== <?xml version="1.0"?> <docs> <a href="http://www.ped.com">Out1</a> </docs>
