Skip to content

Commit

Permalink
[] (0) input.files should be readonly.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3545 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 6, 2009
1 parent 1368a3c commit b0bb32b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index
Expand Up @@ -71,7 +71,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 5 August 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 6 August 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -29396,7 +29396,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
attribute boolean <a href=#dom-input-checked title=dom-input-checked>checked</a>;
attribute boolean <a href=#dom-fe-disabled title=dom-fe-disabled>disabled</a>;
readonly attribute <a href=#htmlformelement>HTMLFormElement</a> <a href=#dom-fae-form title=dom-fae-form>form</a>;
attribute <span>FileList</span> <a href=#dom-input-files title=dom-input-files>files</a>;
readonly attribute <span>FileList</span> <a href=#dom-input-files title=dom-input-files>files</a>;
attribute DOMString <a href=#dom-fs-formaction title=dom-fs-formAction>formAction</a>;
attribute DOMString <a href=#dom-fs-formenctype title=dom-fs-formEnctype>formEnctype</a>;
attribute DOMString <a href=#dom-fs-formmethod title=dom-fs-formMethod>formMethod</a>;
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -32603,7 +32603,7 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
attribute boolean <span title="dom-input-checked">checked</span>;
attribute boolean <span title="dom-fe-disabled">disabled</span>;
readonly attribute <span>HTMLFormElement</span> <span title="dom-fae-form">form</span>;
attribute <span>FileList</span> <span title="dom-input-files">files</span>;
readonly attribute <span>FileList</span> <span title="dom-input-files">files</span>;
attribute DOMString <span title="dom-fs-formAction">formAction</span>;
attribute DOMString <span title="dom-fs-formEnctype">formEnctype</span>;
attribute DOMString <span title="dom-fs-formMethod">formMethod</span>;
Expand Down

0 comments on commit b0bb32b

Please sign in to comment.