<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="#" type="text/xsl" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>

<xsl:template match="/">
<html>
  <head><title>fail to create child elements</title></head>
  <body>
Test inserting content into a html:input, which can't hold children<br/>
<form NAME="statform">
  <input type="button" value="Single child, trigger endElement" ><br/></input>
  <input type="button" value="Tree, trigger element" ><div><br/></div></input>
  <input type="button" value="Tree, trigger chars" ><div>foo</div></input>
</form>
  </body>
</html>
</xsl:template>

</xsl:stylesheet>

