chromium/third_party/blink/web_tests/svg/W3C-SVG-1.1/animate-elem-21-t.svg

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.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                           -->
<!-- Author : Chris lilley  22-Mar-2000                                   -->
<!--======================================================================-->
<svg version="1.1" baseProfile="tiny" 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.8 $" testname="animate-elem-21-t.svg">
			<Paragraph>
                Test for chained animations
            </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 white to red 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. The fill color of these circles is also animated, from white to 
                grey. The animations are triggered by the start of the corresponding 
                animation of the red square.
            </Paragraph>
			<Paragraph>
                The rendered picture should match the reference image, (except
                for possible variations in the labeling 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 red to white. After the second click on "fade in",
                however, the red square goes from white to red, and then
                goes back from red to white. 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-21-t</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="white" stroke-width="30" fill="none" cx="100" cy="200" r="60">
			<animate id="fadein" attributeName="stroke" attributeType="auto" from="white" to="#666" begin="indefinite" dur="3s" fill="freeze"/>
			<animate id="fadeout" attributeName="stroke" attributeType="auto" from="#666" to="white" begin="indefinite" dur="3s" fill="freeze"/>
		</circle>
		<rect id="pink" x="20" y="20" width="180" height="180" fill="#fff">
			<animate id="fadein2" attributeName="fill" attributeType="auto" from="#fff" to="red" begin="fadein.begin" dur="3s" fill="freeze"/>
			<animate id="fadeout2" attributeName="fill" attributeType="auto" from="red" to="#fff" begin="fadeout.begin" dur="3s" fill="freeze"/>
		</rect>
		<circle stroke="white" stroke-width="20" fill="none" cx="200" cy="110" r="80">
			<animate id="fadein3" attributeName="stroke" attributeType="auto" from="white" to="#666" begin="fadein.begin" dur="3s" fill="freeze"/>
			<animate id="fadeout3" attributeName="stroke" attributeType="auto" from="#666" to="white" begin="fadeout.begin" dur="3s" fill="freeze"/>
		</circle>
		<!-- ok so this is testing dynamic compositing as well -->
		<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.8 $</text>
	<rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
  <script>
    // Pause the animation at t=0.
    document.documentElement.pauseAnimations();
  </script>
</svg>