1<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2
3<xsl:output indent="no" omit-xml-declaration="yes"/>
4
5<xsl:template match="/">
6  <!-- Output should not include extraneous newlines when indent is off -->
7  <xsl:comment>Comment</xsl:comment>
8  <root/>
9</xsl:template>
10
11</xsl:stylesheet>