<?xml version="1.1" encoding="UTF-8" ?>
<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 3.0 Language//EN" "http://www.w3.org/2008/SMIL30/SMIL30Language.dtd">

<!--
Copyright: Copyright 1998-2008 W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/2008/04-testsuite-license.
Author: David Melendi Palacio & Xabiel Garcia Paneda (Universidad de Oviedo)
Version: October 25, 2007
Chapter: SMIL 3.0 SMILText
Module: SMIL 3.0 SMILText
Feature: tev with begin attribute validation. The value of the tev depends on an event generated by another smilText
File Name: smil30-smiltext-tevbegin.smil
Expected Behavior: The text appears after 3 seconds.

-->


<smil xmlns="http://www.w3.org/ns/SMIL" version="3.0" baseProfile="Language">
<head>
	<layout>
		<root-layout width="300" height="400" />
		<region xml:id="textR1" width="100%" height="50%" backgroundColor="white" textColor="black"/>
		<region xml:id="textR2" width="100%" height="50%" top="200px" backgroundColor="white" textColor="black"/>
	</layout>
</head>
<body>
	<par>
		<smilText xml:id="text1" region="textR1" dur="10s">
			This is a test ...<tev begin="3s" /> I appear after 3 seconds <tev begin="text2Tev.endEvent" />, I appear at the same time as END 
		</smilText>
		<smilText xml:id="text2" region="textR2" dur="10s">
			This is another piece of test <tev begin="5s" xml:id="text2Tev"/> END
		</smilText>
	</par>
</body>
</smil>
