<?xml version="1.0"?>
<!-- @ Copyright 1998-2003 W3C (MIT, ERCIM, Keio), All Rights Reserved. See http://www.w3.org/Consortium/Legal/. @ -->
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml" xmlns:conf="http://www.w3.org/2002/vxml-conformance">
<!-- 
    1085: If a document scope menu grammar is matched while processing another 
          form and the matched <choice> element's event or eventexpr is thrown
          and the event handler does not transition to a new form, the FIA
          resumes in the <menu> after clearing the menu's anonymous form
          item variable.
-->
  <catch event="org.w3c.foo">
    <reprompt/>
  </catch>
  
  <catch>
    <conf:comment>
      Toplevel caught event <value expr="_event"/>
    </conf:comment>
    <conf:fail expr="_event"/>
  </catch>

  <form id="form1">
    <field>
      <conf:speech value="alpha"/>
    </field>
    <block>
      <conf:fail reason="We should not be here."/>
    </block>
  </form>
  
  <menu scope="document">
    <conf:speech value="bravo"/>
    <choice eventexpr="'org.w3c.foo'">
      <conf:grammar utterance="alpha"/>
    </choice>
    <choice expr="'#pass'">
      <conf:grammar utterance="bravo"/>
    </choice>
  </menu>

  <form id="pass">
    <block>
      <conf:pass/>
    </block>
  </form>

</vxml>


