Skip to content

Commit

Permalink
[g] (2) Make the request sent by ping='' include an entity body, to e…
Browse files Browse the repository at this point in the history
…nable even easier recognition. (credit: jr)

git-svn-id: http://svn.whatwg.org/webapps@2430 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Nov 24, 2008
1 parent 17afcd9 commit e4b3e88
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions index
Expand Up @@ -17,7 +17,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-recommendation-&mdash;-date:-01-jan-1901>Draft Recommendation &mdash; 22 November 2008</h2>
<h2 class="no-num no-toc" id=draft-recommendation-&mdash;-date:-01-jan-1901>Draft Recommendation &mdash; 24 November 2008</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<dl><dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -38364,10 +38364,10 @@ interface <dfn id=sqlstatementerrorcallback>SQLStatementErrorCallback</dfn> {

<p>For URLs that are HTTP URLs, the requests must be performed by
<a href=#fetch title=fetch>fetching</a> the specified URLs using the
POST method, with an empty entity body in the request. All relevant
cookie and HTTP authentication headers must be included in the
request. Which other headers are required depends on the URLs
involved.</p>
POST method, with an entity body with the MIME type <code title="">text/ping</code> consisting of the four-character string
"<code title="">PING</code>". All relevant cookie and HTTP
authentication headers must be included in the request. Which other
headers are required depends on the URLs involved.</p>

<dl class=switch><dt>If both the <span title="the document's
address">address</span><!-- XXXDOCURL --> of the
Expand Down
9 changes: 5 additions & 4 deletions source
Expand Up @@ -43634,10 +43634,11 @@ interface <dfn>SQLStatementErrorCallback</dfn> {

<p>For URLs that are HTTP URLs, the requests must be performed by
<span title="fetch">fetching</span> the specified URLs using the
POST method, with an empty entity body in the request. All relevant
cookie and HTTP authentication headers must be included in the
request. Which other headers are required depends on the URLs
involved.</p>
POST method, with an entity body with the MIME type <code
title="">text/ping</code> consisting of the four-character string
"<code title="">PING</code>". All relevant cookie and HTTP
authentication headers must be included in the request. Which other
headers are required depends on the URLs involved.</p>

<dl class="switch">

Expand Down

0 comments on commit e4b3e88

Please sign in to comment.