- From: poot <cvsmail@w3.org>
- Date: Fri, 7 Aug 2009 08:13:44 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Allow File, FileData, and FileList to be passed through postMessage(). (whatwg r3548) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2742&r2=1.2743&f=h http://html5.org/tools/web-apps-tracker?from=3547&to=3548 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2742 retrieving revision 1.2743 diff -u -d -r1.2742 -r1.2743 --- Overview.html 6 Aug 2009 09:24:36 -0000 1.2742 +++ Overview.html 6 Aug 2009 23:13:20 -0000 1.2743 @@ -5687,6 +5687,18 @@ <code title="dom-canvaspixelarray-length"><a href="#dom-canvaspixelarray-length">length</a></code> and pixel values as the <var title="">input</var>'s.</dd> + <dt>If <var title="">input</var> is a <code>File</code> object</dt> + + <dd><p>Return a newly constructed <code>File</code> object corresponding to the same underlying data.</dd> + + <dt>If <var title="">input</var> is a <code>FileData</code> object</dt> + + <dd><p>Return a newly constructed <code>FileData</code> object corresponding to the same underlying data.</dd> + + <dt>If <var title="">input</var> is a <code>FileList</code> object</dt> + + <dd><p>Return a newly constructed <code>FileList</code> object containing a list of newly constructed <code>File</code> objects corresponding to the same underlying data as those in <var title="">input</var>, maintaining their relative order.</dd> + <dt>If <var title="">input</var> is a host object (e.g. a DOM node)</dt> <dd><p>Return the null value.</dd>
Received on Thursday, 6 August 2009 23:14:21 UTC