tkormann    02/05/29 06:00:35

  Modified:    test-resources/org/apache/batik/test samplesRendering.xml
               test-references/samples/tests/spec/linking
                        anchorInsideText.png
  Added:       samples/tests/spec/scripting removeLast.svg
  Log:
  - commit the new reference image for anchorInsideText.svg though this test
    needs to be checked manually before any release.
  
  - add the test called linearGradientLine.svg to regard. This test
    has no reference image because there is a bug in batik so we can remember it.
  
  - add a new test removeLast.svg which illustrates a bug in batik (the test
    should be run manually - click on the grey rect, it's supposed to be removed)
  
  Revision  Changes    Path
  1.72      +3 -1      
xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml
  
  Index: samplesRendering.xml
  ===================================================================
  RCS file: 
/home/cvs/xml-batik/test-resources/org/apache/batik/test/samplesRendering.xml,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- samplesRendering.xml      28 May 2002 12:52:03 -0000      1.71
  +++ samplesRendering.xml      29 May 2002 13:00:34 -0000      1.72
  @@ -8,7 +8,7 @@
   
   <!-- ========================================================================= -->
   <!-- @author [EMAIL PROTECTED]                                         -->
  -<!-- @version $Id: samplesRendering.xml,v 1.71 2002/05/28 12:52:03 tkormann Exp $ 
-->
  +<!-- @version $Id: samplesRendering.xml,v 1.72 2002/05/29 13:00:34 tkormann Exp $ 
-->
   <!-- ========================================================================= -->
   <testSuite id="samplesRendering" name="samples and samples/test Rendering" 
class="org.apache.batik.test.svg.SamplesRenderingTest">
   
  @@ -166,6 +166,7 @@
           <test id="samples/tests/spec/paints/externalPaints.svg" />
           <test id="samples/tests/spec/paints/gradientLimit.svg" />
           <test id="samples/tests/spec/paints/linearGradientOrientation.svg" />
  +        <test id="samples/tests/spec/paints/linearGradientLine.svg" />
           <test id="samples/tests/spec/paints/patternPreserveAspectRatioA.svg" />
           <test id="samples/tests/spec/paints/patternRegionA.svg" />
           <test id="samples/tests/spec/paints/patternRegionB.svg" />
  @@ -283,6 +284,7 @@
           <test id="samples/tests/spec/scripting/polyline.svg" />
           <test id="samples/tests/spec/scripting/rect.svg" />
           <test id="samples/tests/spec/scripting/remove.svg" />
  +        <test id="samples/tests/spec/scripting/removeLast.svg" />
           <test id="samples/tests/spec/scripting/removeOnclick.svg" />
           <test id="samples/tests/spec/scripting/transform.svg" />
           <test id="samples/tests/spec/scripting/transform2.svg" />
  
  
  
  1.2       +95 -71    
xml-batik/test-references/samples/tests/spec/linking/anchorInsideText.png
  
        <<Binary file>>
  
  
  1.1                  xml-batik/samples/tests/spec/scripting/removeLast.svg
  
  Index: removeLast.svg
  ===================================================================
  <?xml version="1.0" standalone="no"?>
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";>
  
  <!-- ====================================================================== -->
  <!-- Copyright (C) The Apache Software Foundation. All rights reserved.     -->
  <!--                                                                        -->
  <!-- This software is published under the terms of the Apache Software      -->
  <!-- License version 1.1, a copy of which has been included with this       -->
  <!-- distribution in the LICENSE file.                                      -->
  <!-- ====================================================================== -->
  
  <!-- ====================================================================== -->
  <!-- remove last                                                            -->
  <!--                                                                        -->
  <!-- @author [EMAIL PROTECTED]                                               -->
  <!-- @version $Id: removeLast.svg,v 1.1 2002/05/29 13:00:35 tkormann Exp $ -->
  <!-- ====================================================================== -->
  
  <svg xmlns="http://www.w3.org/2000/svg"; 
       xmlns:xlink="http://www.w3.org/1999/xlink";
       id="body" width="450" height="500" viewBox="0 0 450 500">
  
      <script type="text/ecmascript">
      function remove(evt) {
          evt.target.parentNode.removeChild(evt.target);
      }
  
      </script>
  
     <rect onclick="remove(evt)" 
           x="100" y="100" width="100" height="100" style="fill:#eee"/>
  
  </svg>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to