- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 06 Aug 2009 23:13:23 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv4914 Modified Files: Overview.html Log Message: Allow File, FileData, and FileList to be passed through postMessage(). (whatwg r3548) Index: Overview.html =================================================================== 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:13:33 UTC