Abstract

This is an addendum to the specification of HTML5 forms extending the abilities of configuring HTTP requests through HTML markup.

This document has been developed as a result of work contributed in addressing HTML WG ISSUE-195: Enhance http request generation from forms.

Status of This Document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

Beware. This specification is no longer in active maintenance and the HTML Working Group does not intend to maintain it further.

This specification is an extension specification to HTML.

This document was published by the HTML Working Group as a Working Group Note. If you wish to make comments regarding this document, please send them to public-html@w3.org (subscribe, archives). All comments are welcome.

Publication as a Working Group Note does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

This document is governed by the 1 September 2015 W3C Process Document.

Table of Contents

1. Introduction

This section is non-normative.

The use of forms in HTML provide a declarative interface for capturing user input for interaction with remote web services over the HTTP protocol.

This specification builds upon the standardization of XMLHttpRequest [XHR] by extending the functionality available to configure HTTP requests in JavaScript interfaces to declarative form attributes and controls.

The set of changes herein remove the restriction on HTTP methods allowing both the use of the common HTTP methods PUT and DELETE, while also allowing HTTP extension-methods for unstandardized private or experimental use.

A new payload submission attribute is introduced to enable the configuration of the HTTP message generated in form submit. This allows flexibility in the configuration of URL query parameters, HTTP headers and message data through input controls.

The use of named form control fields is extended to include HTTP Authentication parameters synonymous with the XMLHttpRequest open method arguments which are managed by the User Agent. This introduces declarative "login" and "logout" forms defined by protocol and provides an alternative to the use of stateful cookies for HTTP session continuation.

The sub-sections of this document correlate to the revised sections of the HTML5 [HTML5] specification and identify the complete set of changes with the exception of nominal referential updates.

2. Form method Attribute

4.10.19 Attributes common to form controls

4.10.19.6 Form submission

The method and formmethod content attributes, if specified, must be a valid HTTP method or extension-method [HTTP11] with the exception of the following keywords and states which are forbidden:

  • The keyword connect, mapping to the state CONNECT, indicating the HTTP CONNECT method.
  • The keyword trace, mapping to the state TRACE, indicating the HTTP TRACE method.
  • The keyword track, mapping to the state TRACK, indicating the HTTP TRACK method.

The invalid value default for these attributes is the GET state. (There is no missing value default.)

The method of an element is the corresponding state. If the element is a submit button and has a formmethod attribute, then the element's method is that attribute's state; otherwise, it is the form owner's method attribute's state.

3. Submission payload Attribute

4.10 Forms

Categories:
Submittable content.
Content attributes:
payload
DOM interface:
interface <HTMLSubmittableElement> {
    attribute DOMString payload;
};

4.10.19 Attributes common to form controls

<ADDENDUM> Binding form controls: the payload attribute

The payload attribute on a form control is used to specify the binding of the control to a scheme data set for form submission. The attribute is an enumerated attribute with the following keywords and states:

  • The keyword _action, mapping to the state ACTION, indicating that the value is a member of the form action set.
  • The keyword _header, mapping to the state HEADER, indicating that the value is a member of the form header set.
  • The keyword _body, mapping to the state BODY, indicating that the value is a member of the form body set.

If the element does not have such an attribute then the value is determined within the context of the form, or the submitter during form submission:

  • If the scheme is http(s) and the method is HEAD, GET, OPTIONS or DELETE then the payload is the ACTION state.

  • If the scheme is http(s) and the method is PUT, POST, PATCH or an extension-method then the payload is the BODY state.

  • For the data and mailto schemes the missing value default is the BODY state.

4. Form Controls for HTTP Authentication

4.10.19 Attributes common to form controls

4.10.19.1 Naming form controls: the name attribute

The name content attribute gives the name of the form control, as used in form submission and in the form element's elements object. If the attribute is specified, its value must not be the empty string.

Any non-empty value for name is allowed, but the names "isindex", "_charset_", "_username_", "_password_" and "_logout_" are special:

isindex

This value, if used as the name of a Text control that is the first control in a form that is submitted using the application/x-www-form-urlencoded mechanism, causes the submission to only include the value of this control, with no name.

_charset_

This value, if used as the name of a Hidden control with no value attribute, is automatically given a value during submission consisting of the submission character encoding.

_username_

This value, if used as the name of a Text or Email control, is used as a named parameter for a HTTP Authentication scheme [RFC2617] if supported by the user agent and the form does not contain an Authorization request header.

_password_

This value, if used as the name of a Password control, is used as a named parameter for a HTTP Authentication scheme [RFC2617] if supported by the user agent and the form does not contain an Authorization request header.

_logout_

This value, if used as the name of a Hidden control, causes a User Agent which supports HTTP Authentication and reuses authenticated credentials across requests to clear any credentials for the protection space on receiving a HTTP success code (2XX) response [RFC2617].

The name IDL attribute must reflect the name content attribute.

5. Form Submission

4.10.22 Form submission

4.10.22.3 Form submission algorithm

When a form element form is submitted from an element submitter (typically a button), optionally with a submitted from submit() method flag set, the user agent must run the following steps:

  1. Let form document be the form's Document.

  2. If form document has no associated browsing context or its active sandboxing flag set has its sandboxed forms browsing context flag set, then abort these steps without doing anything.

  3. Let form browsing context be the browsing context of form document.

  4. If the submitted from submit() method flag is not set, and the submitter element's no-validate state is false, then interactively validate the constraints of form and examine the result: if the result is negative (the constraint validation concluded that there were invalid fields and probably informed the user of this) then abort these steps.

  5. If the submitted from submit() method flag is not set, then fire a simple event that is cancelable named submit, at form. If the event's default action is prevented (i.e. if the event is canceled) then abort these steps. Otherwise, continue (effectively the default action is to perform the submission).

  6. Let action be the result of constructing the form action for form in the context of submitter.

  7. If action is the empty string, let action be the document's address of the form document.

    Note

    This step is a willful violation of RFC 3986, which would require base URL processing here. This violation is motivated by a desire for compatibility with legacy content. [RFC3986]

  8. Resolve the URL action, relative to the submitter element. If this fails, abort these steps. Otherwise, let action be the resulting absolute URL.

  9. Let scheme be the <scheme> of the resulting absolute URL.

  10. Let method be the submitter element's method.

  11. Let form action set be the result of constructing a form payload set for form in the context of submitter with payload type ACTION.

  12. Let form header set be the result of constructing a form payload set for form in the context of submitter with payload type HEADER.

  13. Let form body set be the result of constructing a form payload set for form in the context of submitter with payload type BODY.

  14. Let enctype be the submitter element's enctype.

  15. Let target be the submitter element's target.

  16. If the user indicated a specific browsing context to use when submitting the form, then let target browsing context be that browsing context. Otherwise, apply the rules for choosing a browsing context given a browsing context name using target as the name and form browsing context as the context in which the algorithm is executed, and let target browsing context be the resulting browsing context.

  17. If target browsing context was created in the previous step, or if the form document has not yet completely loaded, then let replace be true. Otherwise, let it be false.

  18. Otherwise, select the appropriate behavior based on the value of scheme and jump to the steps therein.

    If scheme is not one of those listed in below, then the behavior is not defined by this specification. User agents should, in the absence of another specification defining this, act in a manner analogous to that defined in this specification for similar schemes.

    The behaviors are as follows:

    Submit http(s)
    Note

    If method is anything but GET or POST, and the origin of action is not the same origin as that of form document, then user agents may abort these steps, or perform a cross-origin pre-flight verification [CORS].

    Let query be the result of encoding the form action set using the application/x-www-form-urlencoded encoding algorithm, interpreted as a US-ASCII string.

    Let destination be a new URL that is equal to the action except that its <query> component is replaced by query (adding a U+003F QUESTION MARK character (?) if appropriate).

    Let request headers be a list of HTTP header names and and corresponding header values, initially empty.

    Loop: For each entry in form header set, run the following substeps:

    1. If the name of the entry does not match the field-name production [HTTP11], then skip these substeps.

    2. If the value of the entry does not match the field-value production [HTTP11], then skip these substeps.

    3. If the name of the entry is a case-insensitive match for any of the following set of forbidden headers, then the skip these substeps:

      • Accept-Charset
      • Accept-Encoding
      • Access-Control-Request-Headers
      • Access-Control-Request-Method
      • Connection
      • Content-Length
      • Cookie
      • Cookie2
      • Date
      • DNT
      • Expect
      • Host
      • Keep-Alive
      • Origin
      • Referer
      • TE
      • Trailer
      • Transfer-Encoding
      • Upgrade
      • User-Agent
      • Via

      ...or if the start of name is a case-insensitive match for Proxy- or Sec- (including when header is just Proxy- or Sec-).

    4. If the list of request headers does not contain a case-insensitive match of the name of the entry, then append the name and value to the list of request headers.

    5. Otherwise, combine the value of the matched request header with the value of the entry using a single U+002C COMMA character (,) as separator [HTTP11].

    Let request username be the value of the first control in the form with name "_username_" and with type "text" or "email", or null if no such element exists.

    Let request password be the value of the first control in the form with name "_password_" and with type "password", or null if no such element exists.

    If the list of request headers does not contain an Authorization header and the resource was returned with an WWW-Authenticate response header, the user agent should answer the strongest authentication challenge using the request username and request password as authentication scheme parameters and add the header to the list of request headers.

    Let entity body be the result of encoding the form body set using the appropriate form encoding algorithm.

    Let MIME type be determined as follows:

    If enctype is application/x-www-form-urlencoded
    Let MIME type be "application/x-www-form-urlencoded".
    If enctype is multipart/form-data
    Let MIME type be the concatenation of the string "multipart/form-data;", a U+0020 SPACE character, the string "boundary=", and the multipart/form-data boundary string generated by the multipart/form-data encoding algorithm.
    If enctype is text/plain
    Let MIME type be "text/plain".

    Navigate target browsing context to action using the HTTP method given by method applying any additional request headers and with entity body as the entity body, of type MIME type. If replace is true, then target browsing context must be navigated with replacement enabled.

    If the user agent supports HTTP Authentication and Authorization is not in the list of request headers, it should respond to a 401 Unauthorized authentication challenge using the request username and request password as authentication scheme parameters.

    If the request username is null and request password is null the user agent should prompt the end user for authentication challenge parameters.

    Submit data

    Let data be the result of encoding the form body set using the appropriate form encoding algorithm.

    If action contains the string "%%%%" (four U+0025 PERCENT SIGN characters), then %-escape all bytes in data that, if interpreted as US-ASCII, do not match the unreserved production in the URI Generic Syntax, and then, treating the result as a US-ASCII string, further %-escape all the U+0025 PERCENT SIGN characters in the resulting string and replace the first occurrence of "%%%%" in action with the resulting double-escaped string. [RFC3986]

    Otherwise, if action contains the string "%%" (two U+0025 PERCENT SIGN characters in a row, but not four), then %-escape all characters in data that, if interpreted as US-ASCII, do not match the unreserved production in the URI Generic Syntax, and then, treating the result as a US-ASCII string, replace the first occurrence of "%%" in action with the resulting escaped string. [RFC3986]

    Navigate target browsing context to the potentially modified action (which will be a data: URL). If replace is true, then target browsing context must be navigated with replacement enabled.

    Submit mailto

    Let destination have the same value as action.

    Let recipients be the resulting encoding the form action set by concatenating the elements using a U+002C COMMA character (,) deliminator.

    Replace occurrences of U+002B PLUS SIGN characters (+) in recipients with the string "%20".

    If recipients is not the empty string, let destination consist of all the characters from the first character in destination to the character immediately before the first U+003F QUESTION MARK character (?), if any, or the end of the string if there are none.

    Append recipients to destination.

    Let headers be the resulting encoding the form header set using the application/x-www-form-urlencoded encoding algorithm, interpreted as a US-ASCII string.

    Replace occurrences of U+002B PLUS SIGN characters (+) in headers with the string "%20".

    If destination does not contain a U+003F QUESTION MARK character (?), append a single U+003F QUESTION MARK character (?) to destination. Otherwise, append a single U+0026 AMPERSAND character (&).

    Append headers to destination.

    Let body be the resulting encoding the form body set using the appropriate form encoding algorithm and then %-escaping all the bytes in the resulting byte string that, when interpreted as US-ASCII, do not match the unreserved production in the URI Generic Syntax. [RFC3986]

    If destination does not contain a U+003F QUESTION MARK character (?), append a single U+003F QUESTION MARK character (?) to destination. Otherwise, append a single U+0026 AMPERSAND character (&).

    Append the string "body=" to destination.

    Append body, interpreted as a US-ASCII string, to destination.

    Navigate target browsing context to destination. If replace is true, then target browsing context must be navigated with replacement enabled.

    The appropriate form encoding algorithm is determined as follows:

    If enctype is application/x-www-form-urlencoded
    Use the application/x-www-form-urlencoded encoding algorithm.
    If enctype is multipart/form-data
    Use the multipart/form-data encoding algorithm.
    If enctype is text/plain
    Use the text/plain encoding algorithm.

4.10.22.4 Constructing a form payload set

The algorithm to construct a form payload set for a form form optionally in the context of a submitter submitter is as follows. If not specified otherwise, submitter is null.

  1. Let payload be the payload type whose data set is to be constructed.

  2. Let controls be a list of all the submittable elements whose form owner is form, in tree order.

  3. Let the form payload set be a list of name-value-type tuples, initially empty.

  4. Loop: For each element field in controls, in tree order, run the following substeps:

    1. If any of the following conditions are met, then skip these substeps for this element:

      • The field element has payload attribute state which is not equal to payload.
      • The field element has a datalist element ancestor.
      • The field element is disabled.
      • The field element is a button but it is not submitter.
      • The field element is an input element whose name attribute value is "_username_" or "_password_".
      • The field element is an input element whose type attribute is in the Checkbox state and whose checkedness is false.
      • The field element is an input element whose type attribute is in the Radio Button state and whose checkedness is false.
      • The field element is not an input element whose type attribute is in the Image Button state, and either the field element does not have a name attribute specified, or its name attribute's value is the empty string.
      • The field element is an object element that is not using a plugin.

      Otherwise, process field as follows:

    2. Let type be the value of the type IDL attribute of field.

    3. If the field element is an input element whose type attribute is in the Image Button state, then run these further nested substeps:

      1. If the field element has a name attribute specified and its value is not the empty string, let name be that value followed by a single U+002E FULL STOP character (.). Otherwise, let name be the empty string.

      2. Let namex be the string consisting of the concatenation of name and a single U+0078 LATIN SMALL LETTER X character (x).

      3. Let namey be the string consisting of the concatenation of name and a single U+0079 LATIN SMALL LETTER Y character (y).

      4. The field element is submitter, and before this algorithm was invoked the user indicated a coordinate. Let x be the x-component of the coordinate selected by the user, and let y be the y-component of the coordinate selected by the user.

      5. Append an entry to the form payload set with the name namex, the value x, and the type type.

      6. Append an entry to the form payload set with the name namey and the value y, and the type type.

      7. Skip the remaining substeps for this element: if there are any more elements in controls, return to the top of the loop step, otherwise, jump to the end step below.

    4. Let name be the value of the field element's name attribute.

    5. If the field element is a select element, then for each option element in the select element whose selectedness is true, append an entry to the form payload set with the name as the name, the value of the option element as the value, and type as the type.

    6. Otherwise, if the field element is an input element whose type attribute is in the Checkbox state or the Radio Button state, then run these further nested substeps:

      1. If the field element has a value attribute specified, then let value be the value of that attribute; otherwise, let value be the string "on".

      2. Append an entry to the form payload set with name as the name, value as the value, and type as the type.

    7. Otherwise, if the field element is an input element whose type attribute is in the File Upload state, then for each file selected in the input element, append an entry to the form payload set with the name as the name, the file (consisting of the name, the type, and the body) as the value, and type as the type. If there are no selected files, then append an entry to the form payload set with the name as the name, the empty string as the value, and application/octet-stream as the type.

    8. Otherwise, if the field element is an object element: try to obtain a form submission value from the plugin, and if that is successful, append an entry to the form payload set with name as the name, the returned form submission value as the value, and the string "object" as the type.

    9. Otherwise, append an entry to the form payload set with name as the name, the value of the field element as the value, and type as the type.

    10. If the element has a dirname attribute, and that attribute's value is not the empty string, then run these substeps:

      1. Let dirname be the value of the element's dirname attribute.

      2. Let dir be the string "ltr" if the directionality of the element is 'ltr', and "rtl" otherwise (i.e. when the directionality of the element is 'rtl').

      3. Append an entry to the form payload set with dirname as the name, dir as the value, and the string "direction" as the type.

      Note

      An element can only have a dirname attribute if it is a textarea element or an input element whose type attribute is in either the Text state or the Search state.

  5. End: For the name of each entry in the form payload set, and for the value of each entry in the form payload set whose type is not "file" or "textarea", replace every occurrence of a U+000D CARRIAGE RETURN (CR) character not followed by a U+000A LINE FEED (LF) character, and every occurrence of a U+000A LINE FEED (LF) character not preceded by a U+000D CARRIAGE RETURN (CR) character, by a two-character string consisting of a U+000D CARRIAGE RETURN U+000A LINE FEED (CRLF) character pair.

    Note

    In the case of the value of textarea elements, this newline normalization is already performed during the conversion of the control's raw value into the control's value (which also performs any necessary line wrapping). In the case of input elements type attributes in the File Upload state, the value is not normalized.

  6. Return the form payload set.

6. Examples

6.1 HTTP PUT Form

This section is non-normative.

This form is used to updated an existing resource with the new content within the entity, but only if the entity has not been modified since the current version:

Example 1
<form action="http://www.example.com/cms/hogmanay" method="PUT">
    <input name="If-Unmodified-Since" type="hidden" value="Tue, 1 Jan 2013 12:00:00 GMT" payload="_header"/>
    <textarea name="content">

        For auld lang syne, my dear,
            For auld lang syne.
        We'll tak a cup o' kindness yet,
            For auld lang syne.

        And there's a hand, my trusty fere!
            And gie's a hand o' thine!
        And we'll tak a right gude-willie waught,
            For auld lang syne.

    </textarea>
    <button type="submit">Update</button>
</form>

6.2 HTTP DELETE Form

This section is non-normative.

This form is used to delete a range of resources:

Example 2
<form action="http://www.example.com/logs" method="DELETE">
    <label for="since">Since</label>
    <input id="since" name="since" type="datetime"/>
    <button type="submit">Delete</button>
</form>

6.3 HTTP Authentication Login Form

This section is non-normative.

This HTTP response includes a form which provides the parameters for HTTP authentication from input controls:

Example 3
HTTP/1.1 200 OK
Content-Type: text/html
WWW-Authenticate: BASIC realm=MyRealm

<html>
  <body>
    <form action="http://www.example.com/login" method="POST">
      <label for="user">Username</label>
      <input id="user" name="_username_" type="text"/>
      <label for="pass">Password</label>
      <input id="pass" name="_password_" type="password"/>
      <button type="submit">Login</button>
    </form>
  </body>
</html>

6.4 HTTP Authentication Logout Form

This section is non-normative.

This form sends a logout request to the server which may clear any session cookies, and instructs the user agent to clear the authentication cache:

Example 4
<form action="http://www.example.com/logout" method="POST">
  <input name="_logout_" type="hidden"/>
  <button type="submit">Logout</button>
</form>

6.5 Mailto Email Form

This section is non-normative.

This form captures the inputs for sending an email through a mailto URI:

Example 5
<form action="mailto:">
    <label for="to">To</label>
    <input id="to" name="to" type="email" payload="_action"/>

    <label for="cc">Cc</label>
    <input id="cc" name="cc" type="email" payload="_header"/>

    <label for="bcc">Bcc</label>
    <input id="bcc" name="bcc" type="email" payload="_header"/>

    <label for="subject">Subject</label>
    <input id="subject" name="subject" type="text" payload="_header"/>

    <label>Content</label>
    <textarea size="50"/>

    <button type="submit">Send</button>
</form>

A. Acknowledgements

Acknowledgements and thanks go to the following people for their efforts which have contributed to this specification:

And of course, many thanks to Robin Berjon for making our lives so much easier with his cool specification authoring tool.

B. References

B.1 Normative references

[HTML5]
Ian Hickson, Robin Berjon; Steve Faulkner; Travis Leithead; Erika Doyle Navara; Theresa O'Connor; Silvia Pfeiffer. HTML5. October 2014. W3C Recommendation. URL: http://www.w3.org/TR/html5/
[HTTP11]
R. Fielding et al. Hypertext Transfer Protocol - HTTP/1.1. June 1999. RFC. URL: http://www.ietf.org/rfc/rfc2616.txt
[RFC2617]
J. Franks; P. Hallam-Baker; J. Hostetler; S. Lawrence; P. Leach; A. Luotonen; L. Stewart. HTTP Authentication: Basic and Digest Access Authentication. June 1999. RFC. URL: http://www.ietf.org/rfc/rfc2617.txt
[RFC3986]
T. Berners-Lee; R. Fielding; L. Masinter. Uniform Resource Identifier (URI): Generic Syntax (RFC 3986). January 2005. RFC. URL: http://www.ietf.org/rfc/rfc3986.txt

B.2 Informative references

[CORS]
Anne van Kesteren. Cross-Origin Resource Sharing. 16 January 2014. W3C Recommendation. URL: http://www.w3.org/TR/cors/
[XHR]
Anne van Kesteren. XMLHttpRequest. Living Standard . URL: https://xhr.spec.whatwg.org/