<?xml version="1.1"?>
<!--
Copyright: Copyright 1998-2008  W3C (MIT, ERCIM, Keio), All Rights Reserved. See http://www.w3.org/Consortium/Legal/2008/04-testsuite-license.
Author: Jack Jansen (CWI)
Version: January 22, 2008
Chapter: SMIL 3.0 State
Module: StateTest
Feature: expr attribute
File Name: test-07-expr.smil
Description: Tests expressions with expr.
	Requires UserState.
Expected Behavior: You should see two 5-second self-explanatory texts.
	
-->
<smil xmlns="http://www.w3.org/ns/SMIL" version="3.0" baseProfile="Language">
  <head>
    <layout>
      <root-layout width="400" height="100" backgroundColor="white"/>
    </layout>
    <state language="http://www.w3.org/TR/1999/REC-xpath-19991116">
     <data xmlns="">
      <foo>42</foo>
     </data>
    </state>
  </head>
  <body>
   <seq>
    <text dur="5s" expr="foo==42" src="data:,this%20is%20the%20first%20you%20should%20see" />
    <text dur="5s" expr="foo&lt;41" src="data:,THIS%20YOU%20SHOULD%20NOT%20SEE" />
    <text dur="5s" expr="foo&gt;41" src="data:,this%20is%20the%20second%20you%20should%20see" />
   </seq>
  </body>
</smil>
