Skip to content

Commit

Permalink
[e] (0) File is a subclass of Blob so we can just use Blob's entry.
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=23418
Affected topics: DOM APIs

git-svn-id: http://svn.whatwg.org/webapps@8277 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Nov 13, 2013
1 parent b152c1c commit 08e87e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 18 deletions.
8 changes: 2 additions & 6 deletions complete.html
Expand Up @@ -8179,14 +8179,10 @@ <h4 id=safe-passing-of-structured-data><span class=secno>2.7.6 </span>Safe passi

</dd>

<dt>If <var title="">input</var> is a <code><a href=#file>File</a></code> object</dt>

<dd><p>Let <var title="">output</var> be a newly constructed <code><a href=#file>File</a></code> object
corresponding to the same underlying data.</dd>

<dt>If <var title="">input</var> is a <code><a href=#blob>Blob</a></code> object</dt>

<dd><p>Let <var title="">output</var> be a newly constructed <code><a href=#blob>Blob</a></code> object
<!--CLEANUP-->
<dd><p>Let <var title="">output</var> be a newly constructed object of the same class as <var title="">input</var>,
corresponding to the same underlying data.</dd>

<dt>If <var title="">input</var> is a <code><a href=#filelist>FileList</a></code> object</dt>
Expand Down
8 changes: 2 additions & 6 deletions index
Expand Up @@ -8179,14 +8179,10 @@ interface <dfn id=transferable>Transferable</dfn> { };

</dd>

<dt>If <var title="">input</var> is a <code><a href=#file>File</a></code> object</dt>

<dd><p>Let <var title="">output</var> be a newly constructed <code><a href=#file>File</a></code> object
corresponding to the same underlying data.</dd>

<dt>If <var title="">input</var> is a <code><a href=#blob>Blob</a></code> object</dt>

<dd><p>Let <var title="">output</var> be a newly constructed <code><a href=#blob>Blob</a></code> object
<!--CLEANUP-->
<dd><p>Let <var title="">output</var> be a newly constructed object of the same class as <var title="">input</var>,
corresponding to the same underlying data.</dd>

<dt>If <var title="">input</var> is a <code><a href=#filelist>FileList</a></code> object</dt>
Expand Down
8 changes: 2 additions & 6 deletions source
Expand Up @@ -7780,14 +7780,10 @@ interface <dfn>Transferable</dfn> { };

</dd>

<dt>If <var data-x="">input</var> is a <code>File</code> object</dt>

<dd><p>Let <var data-x="">output</var> be a newly constructed <code>File</code> object
corresponding to the same underlying data.</p></dd>

<dt>If <var data-x="">input</var> is a <code>Blob</code> object</dt>

<dd><p>Let <var data-x="">output</var> be a newly constructed <code>Blob</code> object
<!--CLEANUP-->
<dd><p>Let <var data-x="">output</var> be a newly constructed object of the same class as <var data-x="">input</var>,
corresponding to the same underlying data.</p></dd>

<dt>If <var data-x="">input</var> is a <code>FileList</code> object</dt>
Expand Down

0 comments on commit 08e87e9

Please sign in to comment.