<!-- 
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Rob Lanphier
           Version: $Id: mediarepeat.smil.html,v 1.1 2005/06/20 23:47:59 tmichel Exp $
            Module: Media Object
           Feature: mediaRepeat attribute
         File Name: mediarepeat.smil
  Media Components: 1 animated GIF
 Expected Behavior: Three side-by-side images that count 1,2,3 in 1 second
           intervals.  The leftmost image only counts up once, the right
           two count up twice.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
    <head>
       <layout type="text/smil-basic-layout"> 
         <region id="r1" top="0px" left="0px" height="100px" width="100px"/>
         <region id="r2" top="0px" left="100px" height="100px" width="100px"/>
         <region id="r3" top="0px" left="200px" height="100px" width="100px"/>
       </layout>
    </head>
    <body>
        <par>
             <img src="../images/repeat123.gif" dur="6s" region="r1" mediaRepeat="strip"/>
             <img src="../images/repeat123.gif" dur="6s" region="r2" mediaRepeat="preserve"/>
             <img src="../images/repeat123.gif" dur="6s" region="r3"/>
        </par>
    </body>
</smil>