Skip to content

Commit

Permalink
[e] (0) clarification
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12221

git-svn-id: http://svn.whatwg.org/webapps@6085 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 5, 2011
1 parent 1bfc0e8 commit a941af9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion complete.html
Expand Up @@ -8273,7 +8273,7 @@ <h4 id=safe-passing-of-structured-data><span class=secno>2.8.5 </span>Safe passi
<li>

<p>If <var title="">input</var> is an Array object or an Object
object, then, for each enumerable property in <var title="">input</var>, add a corresponding property to <var title="">output</var> having the same name, and having a value
object, then, for each enumerable property in <var title="">input</var>, add a new property to <var title="">output</var> having the same name, and having a value
created from invoking the <a href=#internal-structured-cloning-algorithm>internal structured cloning
algorithm</a> recursively with the value of the property as the
"<var title="">input</var>" argument and <var title="">memory</var> as the "<var title="">memory</var>"
Expand All @@ -8282,6 +8282,12 @@ <h4 id=safe-passing-of-structured-data><span class=secno>2.8.5 </span>Safe passi

<p class=note>This does not walk the prototype chain.</p>

<p class=note>Property descriptors, setters, getters, and
analogous features are not copied in this process. For example,
the property in the input could be marked as read-only, but in the
output it would just have the default state (typically read-write,
though that could depend on the scripting environment).</p>

</li>

<li><p>Return <var title="">output</var>.</li>
Expand Down
8 changes: 7 additions & 1 deletion index
Expand Up @@ -8298,7 +8298,7 @@ interface <dfn id=propertynodelist>PropertyNodeList</dfn> : <a href=#nodelist>No
<li>

<p>If <var title="">input</var> is an Array object or an Object
object, then, for each enumerable property in <var title="">input</var>, add a corresponding property to <var title="">output</var> having the same name, and having a value
object, then, for each enumerable property in <var title="">input</var>, add a new property to <var title="">output</var> having the same name, and having a value
created from invoking the <a href=#internal-structured-cloning-algorithm>internal structured cloning
algorithm</a> recursively with the value of the property as the
"<var title="">input</var>" argument and <var title="">memory</var> as the "<var title="">memory</var>"
Expand All @@ -8307,6 +8307,12 @@ interface <dfn id=propertynodelist>PropertyNodeList</dfn> : <a href=#nodelist>No

<p class=note>This does not walk the prototype chain.</p>

<p class=note>Property descriptors, setters, getters, and
analogous features are not copied in this process. For example,
the property in the input could be marked as read-only, but in the
output it would just have the default state (typically read-write,
though that could depend on the scripting environment).</p>

</li>

<li><p>Return <var title="">output</var>.</li>
Expand Down
8 changes: 7 additions & 1 deletion source
Expand Up @@ -8288,7 +8288,7 @@ interface <dfn>PropertyNodeList</dfn> : <span>NodeList</span> {

<p>If <var title="">input</var> is an Array object or an Object
object, then, for each enumerable property in <var
title="">input</var>, add a corresponding property to <var
title="">input</var>, add a new property to <var
title="">output</var> having the same name, and having a value
created from invoking the <span>internal structured cloning
algorithm</span> recursively with the value of the property as the
Expand All @@ -8300,6 +8300,12 @@ interface <dfn>PropertyNodeList</dfn> : <span>NodeList</span> {

<p class="note">This does not walk the prototype chain.</p>

<p class="note">Property descriptors, setters, getters, and
analogous features are not copied in this process. For example,
the property in the input could be marked as read-only, but in the
output it would just have the default state (typically read-write,
though that could depend on the scripting environment).</p>

</li>

<li><p>Return <var title="">output</var>.</p></li>
Expand Down

0 comments on commit a941af9

Please sign in to comment.