- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 02 May 2009 01:32:43 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webstorage
In directory hutz:/tmp/cvs-serv24341
Modified Files:
Overview.html
Log Message:
Correct syntax errors in the SQLException definition. (whatwg r3060)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/webstorage/Overview.html,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- Overview.html 1 May 2009 06:22:12 -0000 1.37
+++ Overview.html 2 May 2009 01:32:41 -0000 1.38
@@ -147,7 +147,7 @@
<h1>Web Storage</h1>
<!--ZZZ:-->
<!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
- <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 1 May 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 2 May 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out
<dt>This Version:</dt>
@@ -215,7 +215,7 @@
specification's progress along the W3C Recommendation track.
<!--ZZZ:-->
<!--This specification is the 23 April 2009 Working Draft.-->
- This specification is the 1 May 2009 Editor's Draft.
+ This specification is the 2 May 2009 Editor's Draft.
<!--:ZZZ-->
</p><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/42538/status" rel="disclosure">public list of
@@ -1106,8 +1106,8 @@
encountered. The message should be localized to the user's
language.<hr><p>Errors in the synchronous database API are reported using
<code><a href="#sqlexception">SQLException</a></code> exceptions:<pre class="idl">exception <dfn id="sqlexception">SQLException</dfn> {
- readonly attribute unsigned long <a href="#dom-sqlexception-code" title="dom-SQLException-code">code</a>;
- readonly attribute DOMString <a href="#dom-sqlexception-message" title="dom-SQLException-message">message</a>;
+ unsigned long <a href="#dom-sqlexception-code" title="dom-SQLException-code">code</a>;
+ DOMString <a href="#dom-sqlexception-message" title="dom-SQLException-message">message</a>;
};</pre><p>The <dfn id="dom-sqlexception-code" title="dom-SQLException-code"><code>code</code></dfn>
DOM attribute must return the most appropriate code from the table
below.<p>The <dfn id="dom-sqlexception-message" title="dom-SQLException-message"><code>message</code></dfn> DOM
Received on Saturday, 2 May 2009 01:32:53 UTC