<?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"
>

<!-- Assertion 1091
After a field level grammar is matched, a form level <filled> element will 
not be queued for execution if the namelist of the <filled> element references 
other input items in addition to this field and the mode is "all".
-->

  <catch><conf:fail expr="'catch-all caught ' + _event"/></catch>

   <form>

    <filled mode="all" namelist="one two">
      <conf:fail reason="Field two is not yet filled."/>
    </filled>

   
    <field name="one">
      <conf:grammar utterance="alpha"/>
      <conf:speech value="alpha"/>
    </field> 

    <block>
      <conf:pass/>
    </block>
  
    <field name="two">
      <conf:grammar utterance="bravo"/>
      <conf:speech value="bravo"/>
    </field> 

  </form>

</vxml>
