You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@locus.apache.org on 2000/12/19 22:45:05 UTC

cvs commit: xml-xalan/test/tests/api ThreadOutput.xml ThreadOutput.xsl

curcuru     00/12/19 13:45:03

  Added:       test/tests/api ThreadOutput.xml ThreadOutput.xsl
  Log:
  Random HTML output stylesheet for thread testing
  
  Revision  Changes    Path
  1.1                  xml-xalan/test/tests/api/ThreadOutput.xml
  
  Index: ThreadOutput.xml
  ===================================================================
  <?xml version="1.0"?>
  <doc>
  </doc>
  
  
  1.1                  xml-xalan/test/tests/api/ThreadOutput.xsl
  
  Index: ThreadOutput.xsl
  ===================================================================
  <?xml version="1.0"?> 
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
  
    <!-- FileName: OUTP01 -->
    <!-- Document: http://www.w3.org/TR/xslt -->
    <!-- DocVersion: 19991116 -->
    <!-- Section: 16.2 HTML Output Method -->
    <!-- Purpose: Test for SCRIPT handling -->
  
  <xsl:template match="/">
    <HTML>
      <HEAD>
        <SCRIPT>
          <![CDATA[
          document.write("<P>Hi Oren");
          if((2 < 5) & (6 < 3))
          {
            ...
          }
          ]]>
        </SCRIPT>
      </HEAD>
      <BODY/>
    </HTML>
  </xsl:template>
  
  </xsl:stylesheet>