<!-- 
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron M. Cohen   
         File Name: layout-topLayout2.smil
  Media Components: 2 JPG
 Expected Behavior: Tests topLayout close behavior.
                    Show both topLayouts.
                    At 0s show smile in one window.
                    At 2s show frown in another window.
                    At 4s smile ends, and window should close.
                    At 5s frown ends, window should not close.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
    <head>
        <layout>
            <topLayout width="320" height="240" close="whenNotActive">
                <region id="r1" top="0%" left="0%" right="0%" bottom="0%"/>
            </topLayout>
            <topLayout width="320" height="240" close="onRequest">
                <region id="r2" top="0%" left="0%" right="0%" bottom="0%"/>
            </topLayout>
        </layout>
    </head>
    <body>
        <par dur="6s">
            <img region="r1" src="../images/smile.jpg" begin="0s" end="4s"/>
            <img region="r2" src="../images/frown.jpg" begin="2s" end="5s"/>
        </par>
    </body>
</smil>