<?xml version="1.1"?>
<!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: Sjoerd Mullender (CWI)
Version: January 10, 2008
Module: SMIL 3.0 Animation
Feature: discrete animation with fill="remove" and no end (baseline)
Expected Behavior:
t= 0 to t= 3: top-left
t= 3 to t= 6: bottom-left
t= 6 to t= 9: bottom-middle
t= 9 to t=12: bottom-right
t=12 to t=15: top-left
-->
<smil xmlns="http://www.w3.org/ns/SMIL" version="3.0" baseProfile="Language">
  <head>
    <layout>
      <root-layout width="150" height="200"/>
      <region xml:id="b" left="0" width="150" top="0" height="150" backgroundColor="purple"/>
      <region xml:id="t" left="0" width="150" top="150" height="50"/>
    </layout>
  </head>
  <body>
    <par>
      <brush xml:id="b1" region="b" dur="15s" color="yellow" top="0" left="0" width="50" height="50"/>
      <animateMotion begin="3s" dur="9s" fill="remove" targetElement="b1" values="0,100;50,100;100,100" calcMode="discrete"/>
      <seq>
        <text region="t" dur="3s" src="data:,3%20sec%20top-left"/>
        <text region="t" dur="3s" src="data:,3%20sec%20bottom-left"/>
        <text region="t" dur="3s" src="data:,3%20sec%20bottom-middle"/>
        <text region="t" dur="3s" src="data:,3%20sec%20bottom-right"/>
        <text region="t" dur="3s" src="data:,3%20sec%20top-left"/>
      </seq>
    </par>
  </body>
</smil>
