<!-- 
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Rob Lanphier
           Version: $Id: typeattr.smil.html,v 1.1 2005/06/20 23:52:00 tmichel Exp $
            Module: Media Object
           Feature: Type attribute
                    "This value takes precedence over other possible
                    sources of the media type (for instance, the
                    "Content-type" field in an HTTP or RTSP exchange, or
                    the file extension)"
         File Name: typeattr.smil
  Media Components: Two identical images ("smile.jpg" and the purposefully
                    misnamed "smile.html)
 Expected Behavior: Two images should play side-by-side, even off a
                    properly configured web server where the "html" extension is
                    marked as "text/html" MIME type.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
    <head>
       <layout type="text/smil-basic-layout"> 
         <region id="r1" top="0px" left="0px" height="50px" width="50px"/>
         <region id="r2" top="0px" left="50px" height="50px" width="50px"/>
       </layout>
    </head>
    <body>
        <par>
             <img src="../images/smile.jpg" dur="7s" region="r1"/>
             <img src="../images/smile.html" dur="7s" region="r2" type="image/jpeg"/>
        </par>
    </body>
</smil>