<?xml version="1.0" encoding="UTF-8"?>
<!--

  $Author: richard $

  $Revision: 1.8 $

  $Log: 3,v $
  Revision 1.8  2002/04/24 13:22:39  richard
  needs an other autofaield, in case an error occures when processing the script

  Revision 1.7  2002/04/19 14:13:51  richard
  autofailed, improve the speed of the test

  Revision 1.6  2002/02/25 16:03:40  richard
  bug in the script

  Revision 1.5  2002/02/25 13:51:32  richard
  rewrite test

  Revision 1.4  2002/02/04 16:20:36  gb
  Added the test source and results into the following test files:

  Modified Files:
   	wml2/markup/contextandnav/wmlaccesselement/3
   	wml2/markup/contextandnav/wmlaccesselement/4
   	wml2/markup/contextandnav/wmlaccesselement/5
   	wml2/markup/contextandnav/wmlaccesselement/6
   	wml2/markup/contextandnav/wmlaccesselement/7
   	wml2/markup/contextandnav/wmlaccesselement/8
   	wml2/markup/contextandnav/wmlgetvarelement/1
   	wml2/markup/contextandnav/wmlgetvarelement/10
   	wml2/markup/contextandnav/wmlgetvarelement/11
   	wml2/markup/contextandnav/wmlgetvarelement/2
   	wml2/markup/contextandnav/wmlgetvarelement/3
   	wml2/markup/contextandnav/wmlgetvarelement/4
   	wml2/markup/contextandnav/wmlgetvarelement/5
   	wml2/markup/contextandnav/wmlgetvarelement/6
   	wml2/markup/contextandnav/wmlgetvarelement/7
   	wml2/markup/contextandnav/wmlgetvarelement/8
   	wml2/markup/contextandnav/wmlgetvarelement/9
   	wml2/markup/contextandnav/wmlgoelement/6
   	wml2/markup/contextandnav/wmlgoelement/7
   	wml2/markup/contextandnav/wmlnoopelement/1
   	wml2/markup/contextandnav/wmlsetvarelement/1
   	wml2/markup/contextandnav/wmlsetvarelement/2
   	wml2/markup/contextandnav/wmlsetvarelement/3
   	wml2/markup/contextandnav/wmlsetvarelement/4
   	wml2/markup/contextandnav/wmlsetvarelement/5
   	wml2/markup/contextandnav/wmlsetvarelement/6
   	wml2/markup/contextandnav/wmltimerelement/1
   	wml2/markup/contextandnav/wmltimerelement/2
   	wml2/markup/contextandnav/wmltimerelement/3
   	wml2/markup/contextandnav/wmltimerelement/4
   	wml2/markup/contextandnav/wmltimerelement/5
   	wml2/markup/contextandnav/wmltimerelement/6
   	wml2/markup/contextandnav/wmltimerelement/7
   	wml2/markup/contextandnav/wmltimerelement/8
  Added Files:
   	wml2/markup/contextandnav/wmlaccesselement/access3_1_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access3_2_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access4_1_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access4_2_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access5_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access6_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access7_2_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access8_1_ext.html
   	wml2/markup/contextandnav/wmlaccesselement/access8_2_ext.html

  Revision 1.3  2001/10/30 16:22:16  gb
  Modified all the test files in the wml2 directory such that it puts the <?xml?> declaration back at the top of the file, before the comment.

  Revision 1.2  2001/10/08 21:56:08  gb
  Added the standard header of Author, Revision and Log at the top of each template file.


-->
<test id="wml2/markup/contextandnav/wmltimerelement/3" class="A" scope="wml2" 
	testtype="application" type="manual" source="wml2#6.16.11" device="both">
	<assertion>When the NAME attribute of the WML:TIMER element is specified, 
	the named variable must be set with the current timer value when the card 
	is exited.
	</assertion>
	<notes>May not be automatic because it's not possible to set 2 timers in 
	a card.
	</notes>
	<specnote>Create a card contains a WML:EVENT element that contains a 
	WML:NOOP element. The card should also include a WML:TIMER element with 
	the NAME and VALUE(set to '5000') attributes set. The card should also 
	contain a link to a second card that will display the variables value. 
	Display the card, click the link without allowing the timer to expire, and 
	make sure the value of the variable is greater than zero.
	</specnote>
	<results>
		<result ci="true">
			<name>test</name>
			<value>pass</value>
		</result>
	</results>
	<method>
		<![CDATA[
			<wml:card id="main" title="main" newcontext="true">
				<wml:onevent type="timer">
					<wml:noop />
				</wml:onevent>
				<wml:timer name="timer" value="15000" />
				<p>Click this &nbsp;
					<a href="[[script1]]#main('test', 'card2', $timer)">Link</a> to go to card2.
				</p>
				[[auto_failed]]
				</wml:card>
				<wml:card id="card2">
					<wml:onevent type="enterforward">
						<wml:go href="[[resulturl]]">
							<wml:postfield name="test" value="$test" />
								[[sessionvars]]
						</wml:go>
					</wml:onevent>
				[[auto_failed]]
			</wml:card>
		]]>
	</method>
	<scripts>
		<script id="1">
extern function main(myvar,next, x) {
	if( int(x) > 0) {
    result = 'pass';
  } else {
    result = 'fail';
  }
  WMLBrowser.go('#' + next);
  WMLBrowser.setVar(myvar, result);
  return 1;
}
		</script>
	</scripts>
</test>
