<!--
     test against copy-of for XSLT 1.0 serializer for XML
-->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
  <xsl:output method="html" omit-xml-declaration="yes"/>

  <xsl:include href="serialize.xsl"/>

  <xsl:template match="/">
    <pre>
      <xsl:call-template name="doOutput"/>
    </pre>
  </xsl:template>

</xsl:stylesheet>

