<!-- 
            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: system tests
         File Name: systemTests.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 audio descriptions are turned on,
                    otherwise show frown.jpg.
                    8. show smile.jpg if the system CPU is an x86,
                    otherwise show frown.jpg.
                    9. show smile.jpg if the system component "someComponent" is present,
                    otherwise show frown.jpg.
                    10. show smile.jpg if the system OS is Win32,
                    otherwise show frown.jpg.
                    11. show smile.jpg if the system overdub or subtitles are 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 systemBitrate="56000" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemCaptions="on" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemLanguage="en" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemRequired="smil20lang" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemScreenDepth="8" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemScreenSize="480X640" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemAudioDesc="on" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemCPU="x86" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemComponent="someComponent" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemOperatingSystem="win32" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
            <par begin="1s" dur="2s">
                <switch>        
                    <img systemOverdubOrSubtitle="overdub" src="../images/smile.jpg"/>
                    <img src="../images/frown.jpg"/>
                </switch>
            </par>
        </seq>
    </body>
</smil>