Skip to content

Commit

Permalink
Add utterable support to URLSearchParams https://www.w3.org/Bugs/Publ…
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Oct 4, 2014
1 parent b75e040 commit 4ea9d73
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion url.html
Expand Up @@ -9,7 +9,7 @@

<hgroup>
<h1 class="allcaps">URL</h1>
<h2>Living Standard — Last Updated 3 October 2014</h2>
<h2>Living Standard — Last Updated 4 October 2014</h2>
</hgroup>

<dl>
Expand Down Expand Up @@ -2630,6 +2630,7 @@ <h3 id="interface-urlsearchparams"><span class="secno">7.4 </span>Interface <a h
sequence&lt;USVString&gt; <a href="#dom-urlsearchparams-getall" title="dom-URLSearchParams-getAll">getAll</a>(USVString <var title="">name</var>);
boolean <a href="#dom-urlsearchparams-has" title="dom-URLSearchParams-has">has</a>(USVString <var title="">name</var>);
void <a href="#dom-urlsearchparams-set" title="dom-URLSearchParams-set">set</a>(USVString <var title="">name</var>, USVString <var title="">value</var>);
iterable&lt;USVString, USVString&gt;;
<a href="#dom-urlsearchparams-stringifier" title="dom-URLSearchParams-stringifier">stringifier</a>;
};</pre>

Expand Down Expand Up @@ -2748,6 +2749,10 @@ <h3 id="interface-urlsearchparams"><span class="secno">7.4 </span>Interface <a h
<var title="">name</var> in <a href="#concept-urlsearchparams-list" title="concept-URLSearchParams-list">list</a>, and false
otherwise.

<p>The <a class="external" data-anolis-spec="webidl" href="http://heycam.github.io/webidl/#dfn-value-pairs-to-iterate-over">value pairs to iterate over</a> are the
<a href="#concept-urlsearchparams-list" title="concept-URLSearchParams-list">list</a> name-value pairs with the key being
the name and the value the value.

<p>The <dfn id="dom-urlsearchparams-stringifier" title="dom-URLSearchParams-stringifier">stringifier</dfn> must return the
<a href="#concept-urlencoded-serializer" title="concept-urlencoded-serializer">serialization</a> of the
<a href="#urlsearchparams"><code>URLSearchParams</code></a> object's
Expand Down
5 changes: 5 additions & 0 deletions url.src.html
Expand Up @@ -2597,6 +2597,7 @@ <h3>Interface <code>URLSearchParams</code></h3>
sequence&lt;USVString> <span title=dom-URLSearchParams-getAll>getAll</span>(USVString <var title>name</var>);
boolean <span title=dom-URLSearchParams-has>has</span>(USVString <var title>name</var>);
void <span title=dom-URLSearchParams-set>set</span>(USVString <var title>name</var>, USVString <var title>value</var>);
iterable&lt;USVString, USVString>;
<span title=dom-URLSearchParams-stringifier>stringifier</span>;
};</pre>

Expand Down Expand Up @@ -2715,6 +2716,10 @@ <h3>Interface <code>URLSearchParams</code></h3>
<var title>name</var> in <span title=concept-URLSearchParams-list>list</span>, and false
otherwise.

<p>The <span data-anolis-spec=webidl>value pairs to iterate over</span> are the
<span title=concept-URLSearchParams-list>list</span> name-value pairs with the key being
the name and the value the value.

<p>The <dfn title=dom-URLSearchParams-stringifier>stringifier</dfn> must return the
<span title=concept-urlencoded-serializer>serialization</span> of the
<code>URLSearchParams</code> object's
Expand Down

0 comments on commit 4ea9d73

Please sign in to comment.