Skip to content

Commit

Permalink
Define the algorithm for JSON Serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Jan 20, 2017
1 parent e8edaf0 commit 3e0666e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion webdriver-spec.html
Expand Up @@ -214,9 +214,11 @@ <h3>Dependencies</h3>
<!-- null --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.3.11>Null</a></dfn>
<!-- Number --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.3.19>Number</a></dfn>
<!-- Object --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.2.1>Object</a></dfn>
<!-- Parse --> <li><dfn><a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.12.2">[[\Parse]]</a></dfn>
<!-- String --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.3.18>String</a></dfn>
<!-- undefined --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.3.9>Undefined</a></dfn>
<!-- Stringify --> <li><dfn><a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.12.3">[[\Stringify]]</a></dfn>
<!-- ToInteger --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/6.0/#sec-tointeger>ToInteger</a></dfn>
<!-- undefined --> <li><dfn><a href=http://www.ecma-international.org/ecma-262/5.1/#sec-4.3.9>Undefined</a></dfn>
</ul>

<dt>Fetch
Expand Down Expand Up @@ -680,6 +682,9 @@ <h3>Algorithms</h3>
with <var>name</var> and <var>value</var> to an <a>Object</a> is defined
as calling the <a>[[\Put]]</a> internal method with name <var>name</var>
and value <var>value</var>.

<p>The result of <dfn>JSON serialization</dfn> with <var>object</var> of type JSON <a>Object</a>
and calling the <a>[[\Stringify]]</a> method on <var>object</var>.
</section> <!-- /Algorithms -->

<section>
Expand Down

0 comments on commit 3e0666e

Please sign in to comment.