<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron Cohen (Intel)
           Version: January 29, 2001, v2
            Module: Content Control Module
           Feature: deprecated system tests
         File Name: deprecatedSystemTests.smil
  Media Components: 2 JPG 
 Expected Behavior: A series of system tests, showing the smile.jpg if the
                    system test condition is true, and the frown.jpg if it is
                    false. Each lasts 2 seconds, with a 1 second pause in between.
                    1. show smile.jpg if the system bitrate is set to 56000bps or greater,
                    otherwise show frown.jpg.
                    2. show smile.jpg if the system captions are turned on,
                    otherwise show frown.jpg.
                    3. show smile.jpg if the system language is "en",
                    otherwise show frown.jpg.
                    4. show smile.jpg if the system supports the smil20 language,
                    otherwise show frown.jpg.
                    5. show smile.jpg if the system screen depth is 8 or greater,
                    otherwise show frown.jpg.
                    6. show smile.jpg if the system screen size is 480X640 or greater,
                    otherwise show frown.jpg.
                    7. show smile.jpg if the system overdub or captions setting is set 
                    to overdub, otherwise show frown.jpg.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language"
      xmlns:smil20lang="http://www.w3.org/2001/SMIL20/Language">
    <body>
        <seq>        
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-bitrate="56000" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-captions="on" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-language="en" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-required="smil20lang" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-screen-depth="8" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-screen-size="480X640" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img system-overdub-or-caption="overdub" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
        </seq>
    </body>
</smil>