| <?xml version="1.0" encoding="UTF-8"?> |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd"> |
| <!--======================================================================--> |
| <!--= Copyright 2000 World Wide Web Consortium, (Massachusetts =--> |
| <!--= Institute of Technology, Institut National de Recherche en =--> |
| <!--= Informatique et en Automatique, Keio University). All Rights =--> |
| <!--= Reserved. See http://www.w3.org/Consortium/Legal/. =--> |
| <!--======================================================================--> |
| <!--======================================================================--> |
| <!-- --> |
| <!-- animation-href-BE-02.svg --> |
| <!-- renamed for 1.1 suite to animate-elem-21-t --> |
| <!-- --> |
| <!-- a quick animation test --> |
| <!-- --> |
| <!-- Author : Chris lilley 22-Mar-2000 --> |
| <!-- --> |
| <!-- History: --> |
| <!-- 22 March 2000, CL, created --> |
| <!-- 05 April 2000, LH, "animation" name and minor editorials; ser#2. --> |
| <!-- 17 May 2000, LH, chg opacity 50% to 0.5; ser#3. --> |
| <!-- 19 May 2000, LH, make both "to" and "from" explicit; ser#4. --> |
| <!-- 03-Aug-2000, LH: update DOCTYPE for CR DTD, 20000802; ser# . --> |
| <!-- 14-Nov-2000, LH: move defs into test-body-content. --> |
| <!-- --> |
| <!--======================================================================--> |
| <!--======================================================================--> |
| <!--= Note. After October 2000, revision history is kept as CVS 'commit' =--> |
| <!--= log messages, and therefore is no longer in the preceding preamble.=--> |
| <!--======================================================================--> |
| <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360"> |
| <SVGTestCase xmlns="http://www.w3.org/2000/02/svg/testsuite/description/"> |
| <OperatorScript version="$Revision: 1.5 $" testname="animate-elem-29-b.svg"> |
| <Paragraph> |
| Test compositing of animated fill opacity. |
| </Paragraph> |
| <Paragraph> |
| The assumption is that you will first click on "fade in" and |
| then click on "fade out", each exactly once. The first time you |
| select the link 'fade in', you should see a red square appearing, |
| gradually and smoothly fading from zero to 100% opacity over the |
| course of three seconds. This square is in front of and thus |
| obscures the lower left circle, but is behind the upper right |
| circle which is thus is composited on top of the animated red |
| square. Then, when you click on "fade out", the red square will |
| gradually disappear, smoothly fading from 100% to zero opacity |
| over the course of three seconds. |
| </Paragraph> |
| <Paragraph> |
| The rendered picture should match the reference image, (except |
| for possible variations in the labelling text (per CSS2 rules)) |
| after activating the link on the fade-in button the first time |
| and waiting three seconds for the animation to compete. The picture |
| should remain looking the same way indefinitely, until another |
| link is activated. |
| </Paragraph> |
| <Paragraph> |
| With the second click on "fade in", however, the behavior might |
| be different. In the case of having a first click on "fade in", |
| waiting three seconds, and then immediately perform a first click |
| on "fade out", waiting three seconds, and then immediately perform |
| a second click on "fade in", you should see the following. After |
| the first click on "fade in", the red square goes from zero to 100% |
| opacity. After the first click on "fade out", the red square goes |
| from 100% to zero opacity. After the second click on "fade in", |
| however, the red square goes from zero to 100% opacity, and then |
| goes back from 100% to zero opacity. This is because of the |
| hyperlinking rules as they relate to resolved start times in the |
| SMIL Animation specification. |
| </Paragraph> |
| </OperatorScript> |
| </SVGTestCase> |
| <title id="test-title">animate-elem-29-b</title> |
| <desc id="test-desc">See if animation, tiggered by links, works.</desc> |
| <!--======================================================================--> |
| <!--Content of Test Case follows... =====================--> |
| <!--======================================================================--> |
| <g id="test-body-content"> |
| <circle stroke="#666" stroke-width="30" fill="none" cx="100" cy="200" r="60"/> |
| <rect id="pink" x="20" y="20" width="180" height="180" fill="#f00" fill-opacity="0"> |
| <animate id="fadein" attributeName="fill-opacity" attributeType="auto" from="0" to="1" begin="indefinite" dur="3s" fill="freeze"/> |
| <animate id="fadeout" attributeName="fill-opacity" attributeType="auto" from="1" to="0" begin="indefinite" dur="3s" fill="freeze"/> |
| </rect> |
| <circle stroke="#666" stroke-width="20" fill="none" cx="200" cy="110" r="80"/> |
| <g id="buttons"> |
| <a xlink:href="#fadein"> |
| <rect x="320" y="0" width="160" height="180" fill="green"/> |
| <text fill="white" font-size="30" font-weight="bold" x="330" y="90">Fade in</text> |
| </a> |
| <a xlink:href="#fadeout"> |
| <rect x="320" y="180" width="160" height="180" fill="maroon"/> |
| <text fill="white" font-size="30" font-weight="bold" x="330" y="280">Fade out</text> |
| </a> |
| </g> |
| </g> |
| <text id="revision" x="10" y="340" font-size="40" stroke="none" fill="black">$Revision: 1.5 $</text> |
| <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/> |
| </svg> |