vscode-basex/src/test/test-data/issue-257.formatted.xml
Josh Johnson d68dbe8a22 Add Failing Test
issue: #257
2019-05-31 23:10:43 -04:00

18 lines
No EOL
531 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="UTF-8" indent="yes" />
<xsl:template match="/">
<file>
<xsl:apply-templates />
</file>
</xsl:template>
<xsl:template match="*">
<xsl:message terminate="no">
WARNING: Unmatched element: <xsl:value-of select="name()" />
</xsl:message>
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>