Skip to content

Commit

Permalink
[giow] (0) Define how to serialise JSON for use in drag-and-drop.
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=13165

git-svn-id: http://svn.whatwg.org/webapps@6284 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 8, 2011
1 parent ca21694 commit 46968d1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
8 changes: 6 additions & 2 deletions complete.html
Expand Up @@ -239,7 +239,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1>Web Applications 1.0</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 7 July 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 8 July 2011</h2>
</hgroup><dl><dt>Multiple-page version:</dt>
<dd><a href=http://www.whatwg.org/specs/web-apps/current-work/complete/>http://www.whatwg.org/specs/web-apps/current-work/complete/</a></dd>
<dt>One-page version:</dt>
Expand Down Expand Up @@ -59972,7 +59972,11 @@ <h4 id=json><span class=secno>5.5.1 </span>JSON</h4>
<li><p>Add an entry to <var title="">result</var> called "<code title="">items</code>" whose value is the array <var title="">items</var>.</li>

<li><p>Return the result of serializing <var title="">result</var>
to JSON.</li>
to JSON in the shortest possible way (meaning no whitespace between
tokens, no unnecessary zero digits in numbers, and only using
Unicode escapes in strings for characters that do not have a
dedicated escape sequence), and with a lowercase "<code title="">e</code>" used, when appropriate, in the representation of
any numbers. <a href=#refsJSON>[JSON]</a></li>

</ol><p class=note>This algorithm returns an object with a single
property that is an array, instead of just returning an array, so
Expand Down
8 changes: 6 additions & 2 deletions index
Expand Up @@ -243,7 +243,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 7 July 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 8 July 2011</h2>
</hgroup><dl><dt><strong>Web developer edition</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -59844,7 +59844,11 @@ END:VCARD</pre>
<li><p>Add an entry to <var title="">result</var> called "<code title="">items</code>" whose value is the array <var title="">items</var>.</li>

<li><p>Return the result of serializing <var title="">result</var>
to JSON.</li>
to JSON in the shortest possible way (meaning no whitespace between
tokens, no unnecessary zero digits in numbers, and only using
Unicode escapes in strings for characters that do not have a
dedicated escape sequence), and with a lowercase "<code title="">e</code>" used, when appropriate, in the representation of
any numbers. <a href=#refsJSON>[JSON]</a></li>

</ol><p class=note>This algorithm returns an object with a single
property that is an array, instead of just returning an array, so
Expand Down
7 changes: 6 additions & 1 deletion source
Expand Up @@ -68069,7 +68069,12 @@ END:VCARD</pre>
title="">items</var>.</p></li>

<li><p>Return the result of serializing <var title="">result</var>
to JSON.</p></li>
to JSON in the shortest possible way (meaning no whitespace between
tokens, no unnecessary zero digits in numbers, and only using
Unicode escapes in strings for characters that do not have a
dedicated escape sequence), and with a lowercase "<code
title="">e</code>" used, when appropriate, in the representation of
any numbers. <a href="#refsJSON">[JSON]</a></p></li>

</ol>

Expand Down

0 comments on commit 46968d1

Please sign in to comment.