<!--
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Muriel Jourdan (Muriel.Jourdan@inrialpes.fr)
           Version: Oct 25 2000, v1        
            Module: SMIL Timing & Sync Module 
           Feature: min attribute 
         File Name: min5.smil
  Media Components: 1 MPG (5.6 sec), 1JPG
 Expected Behavior: the video repeats until it is clicked and 
                      then the smile image is shown for 4 seconds.
                    if the click occurs before 14s,
                    then the video continues to repeat until 14s,
                    otherwise the video is stopped immediately.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <body>
     <seq>
       <video src="../videos/nist.mpg" repeatDur="indefinite" end="activateEvent" 
              min="14s"  />
       <img src="../images/smile.jpg"  dur="4s" />
     </seq>
  </body>
</smil>