<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron M. Cohen   
         File Name: layout-predefined-regPoints.smil
  Media Components: 1 JPG
 Expected Behavior: Tests predefined regPoints.
                    Align the center of the image with the predefined
                    rePoints, left-to-right, top-to-bottom, right-to-left, bottom-to-top, 
                      center in sequence.
                    Each for 2s, All with blue background.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
    <head>
        <layout>
           <root-layout width="640px" height="480px"/>
           <region id="central" top="25%" left="25%" width="50%" height="50%" />
        </layout>
    </head>
    <body>
        <seq>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="topLeft" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="topMid" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="topRight" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="midRight" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="bottomRight" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="bottomMid" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="bottomLeft" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="midLeft" dur="2s"/>
            <img region="central" src="../images/smile.jpg" backgroundColor="blue" regAlign="center" regPoint="center" dur="2s"/>
        </seq>
    </body>
</smil>