<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="../xhtml2.css" ?>
<!DOCTYPE html [
	<!ATTLIST section id ID #IMPLIED>
	<!ATTLIST h       id ID #IMPLIED>
	<!ATTLIST div     id ID #IMPLIED>
	<!ATTLIST nl      id ID #IMPLIED>
]>
<html xmlns="http://www.w3.org/2002/06/xhtml2"
      xmlns:xforms="http://www.w3.org/2002/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xml:lang="en">
  <head>
    <title>SMS Message Entry Uses Incremental = True</title>
    <xforms:model id="004">
       <xforms:instance xmlns="">
          <sms>
             <message xsi:type="xsd:string"/>
          </sms>
       </xforms:instance>
    </xforms:model>
  </head>
  <body>
    <xforms:group>
       <xforms:label>Must Respect Incremental</xforms:label>

       <xforms:input model="004" ref="/sms/message" incremental="true">
          <xforms:label>Message</xforms:label>
          <xforms:help>Events delivered as user types SMS message</xforms:help>
       </xforms:input>

       <xforms:textarea model="004" ref="/sms/message" incremental="true">
          <xforms:label>Message</xforms:label>
          <xforms:help>Events delivered as user types SMS message</xforms:help>
          <xforms:hint>Notice that the same value can be bound
                       via multiple controls.</xforms:hint>
       </xforms:textarea>
    </xforms:group>
  </body>
</html>
