<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:sp1="http://www.dummy.com/spaceA"
    xmlns="http://www.w3.org/1999/xhtml" >
<xsl:output method="xml" indent="yes" />

<xsl:template match="/">
   <html> <head>
   <title> Namespace Fun and Frolic #1 </title>
     </head> <body>
     <sp1:testElement />
     <xsl:copy-of select="//sp1:data" />
    </body> </html>
</xsl:template>
</xsl:stylesheet>

