[webkit-changes] cvs commit: LayoutTests/fast/xsl xslt-recursion-expected.txt xslt-recursion.xml

Eric eseidel at opensource.apple.com
Mon Oct 31 23:25:50 PST 2005


eseidel     05/10/31 23:25:49

  Modified:    .        ChangeLog
  Added:       fast/xsl/resources xslt-recursion-chain1.xsl
                        xslt-recursion-chain2.xsl
               fast/xsl xslt-recursion-expected.txt xslt-recursion.xml
  Log:
  Bug #: 5529
  Submitted by: eseidel
  Reviewed by: hyatt
          Test cases for XLST recursion check.
          http://bugzilla.opendarwin.org/show_bug.cgi?id=5529
  
          * fast/xsl/resources/xslt-recursion-chain1.xsl: Added.
          * fast/xsl/resources/xslt-recursion-chain2.xsl: Added.
          * fast/xsl/xslt-recursion-expected.txt: Added.
          * fast/xsl/xslt-recursion.xml: Added.
  
  Revision  Changes    Path
  1.65      +12 -0     LayoutTests/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/LayoutTests/ChangeLog,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- ChangeLog	31 Oct 2005 22:11:34 -0000	1.64
  +++ ChangeLog	1 Nov 2005 07:25:46 -0000	1.65
  @@ -1,3 +1,15 @@
  +2005-10-31  Eric Seidel  <eseidel at apple.com>
  +
  +        Reviewed by hyatt.
  +
  +        Test cases for XLST recursion check.
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=5529
  +
  +        * fast/xsl/resources/xslt-recursion-chain1.xsl: Added.
  +        * fast/xsl/resources/xslt-recursion-chain2.xsl: Added.
  +        * fast/xsl/xslt-recursion-expected.txt: Added.
  +        * fast/xsl/xslt-recursion.xml: Added.
  +
   2005-10-31  Timothy Hatcher  <timothy at apple.com>
   
           Added a correct expected image.
  
  
  
  1.1                  LayoutTests/fast/xsl/resources/xslt-recursion-chain1.xsl
  
  Index: xslt-recursion-chain1.xsl
  ===================================================================
  <stylesheet version="1.0"
       xmlns="http://www.w3.org/1999/XSL/Transform">
      <template match="/">
  <processing-instruction name="xml-stylesheet">href="resources/xslt-recursion-chain2.xsl" type="text/xsl"</processing-instruction>
  <html xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
  <body>
  <script>
  if (window.layoutTestController)
  	layoutTestController.dumpAsText();
  </script>
  <p>Success!</p>
  </body>
  </html>
      </template>
  </stylesheet>
  
  
  
  1.1                  LayoutTests/fast/xsl/resources/xslt-recursion-chain2.xsl
  
  Index: xslt-recursion-chain2.xsl
  ===================================================================
  <stylesheet version="1.0"
       xmlns="http://www.w3.org/1999/XSL/Transform">
      <template match="/">
  <html xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
  <body>
  <p>Failure (acted on XML processing instructions on result XML!)</p>
  </body>
  </html>
      </template>
  </stylesheet>
  
  
  
  1.1                  LayoutTests/fast/xsl/xslt-recursion-expected.txt
  
  Index: xslt-recursion-expected.txt
  ===================================================================
  Success!
  
  
  
  1.1                  LayoutTests/fast/xsl/xslt-recursion.xml
  
  Index: xslt-recursion.xml
  ===================================================================
  <?xml version="1.0" encoding="utf-8"?>
  <?xml-stylesheet href="resources/xslt-recursion-chain1.xsl" type="text/xsl"?>
  
  <!DOCTYPE html 
       PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  
  <html xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
  <body>
  <p>Failure (failed to act on XML processing instructions!)</p>
  </body>
  </html>
  
  
  



More information about the webkit-changes mailing list