<!-- 
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron Cohen (Intel)
           Version: February 7, 2001
            Module: Animation Module
           Feature: animation
         File Name: animation-extRef-image2.smil
  Media Components: none
 Expected Behavior: Two of three stacked colored bars go from 120 to 240 pixels wide
                    growing to the right from 1s to 5s.
                    Bars are frozen from 5s to 10s.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
    <head>
        <layout>
            <root-layout width="640" height="480" backgroundColor="white"/>
            <region id="rect1" top="10px" left="0px" height="20px" width="120px" backgroundColor="green"/>
            <region id="rect2" top="60px" left="0px" height="20px" width="120px" backgroundColor="blue"/>
            <region id="rect3" top="110px" left="0px" height="20px" width="120px" backgroundColor="red"/>
        </layout>
    </head>
    <body>
        <par dur="10s">
            <animate targetElement="rect2" attributeName="width" attributeType="XML" from="120" to="240" begin="1s" dur="5s" fill="freeze"/>
            <animate targetElement="rect3" attributeName="width" attributeType="XML" from="120" to="240" begin="1s" dur="5s" fill="freeze"/>
        </par>
    </body>
</smil>