CVS html5/webstorage

Update of /sources/public/html5/webstorage
In directory roscoe:/tmp/cvs-serv1903

Modified Files:
	Overview.html 
Log Message:
Big editorial cleanup. No normative changes. (whatwg r8634)

--- /sources/public/html5/webstorage/Overview.html	2014/04/23 17:05:29	1.231
+++ /sources/public/html5/webstorage/Overview.html	2014/05/14 23:22:10	1.232
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html lang="en-US-x-Hixie"><title>Web Storage</title><style type="text/css">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html lang="en-GB-x-Hixie"><title>Web Storage</title><style type="text/css">
    pre { margin-left: 2em; white-space: pre-wrap; }
    h2 { margin: 3em 0 1em 0; }
    h3 { margin: 2.5em 0 1em 0; }
@@ -215,7 +215,7 @@
    <p><a href="http://www.w3.org/"><img width="72" src="http://www.w3.org/Icons/w3c_home" alt="W3C" height="48"></a></p>
 
    <h1>Web Storage</h1>
-   <h2 class="no-num no-toc" id="editor-s-draft-23-april-2014">Editor's Draft 23 April 2014</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-14-may-2014">Editor's Draft 14 May 2014</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/webstorage/">http://www.w3.org/TR/webstorage/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -351,7 +351,7 @@
   </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
-  This specification is the 23 April 2014 Editor's Draft.
+  This specification is the 14 May 2014 Editor's Draft.
   </p>
 
   
@@ -789,17 +789,17 @@
   <p>The <span>task source</span> for these tasks is the <span>DOM manipulation task
   source</span>.</p>
 
-  <p>If the event is being fired due to an invocation of the <code title="dom-Storage-setItem"><a href="#dom-storage-setitem">setItem()</a></code> or <code title="dom-Storage-removeItem"><a href="#dom-storage-removeitem">removeItem()</a></code> methods, the event must have its <code title="dom-StorageEvent-key"><a href="#dom-storageevent-key">key</a></code> attribute initialized to the name of the key in question,
-  its <code title="dom-StorageEvent-oldValue"><a href="#dom-storageevent-oldvalue">oldValue</a></code> attribute initialized to the old
-  value of the key in question, or null if the key is newly added, and its <code title="dom-StorageEvent-newValue"><a href="#dom-storageevent-newvalue">newValue</a></code> attribute initialized to the new value of the
+  <p>If the event is being fired due to an invocation of the <code title="dom-Storage-setItem"><a href="#dom-storage-setitem">setItem()</a></code> or <code title="dom-Storage-removeItem"><a href="#dom-storage-removeitem">removeItem()</a></code> methods, the event must have its <code title="dom-StorageEvent-key"><a href="#dom-storageevent-key">key</a></code> attribute initialised to the name of the key in question,
+  its <code title="dom-StorageEvent-oldValue"><a href="#dom-storageevent-oldvalue">oldValue</a></code> attribute initialised to the old
+  value of the key in question, or null if the key is newly added, and its <code title="dom-StorageEvent-newValue"><a href="#dom-storageevent-newvalue">newValue</a></code> attribute initialised to the new value of the
   key in question, or null if the key was removed.</p>
 
   <p>Otherwise, if the event is being fired due to an invocation of the <code title="dom-Storage-clear"><a href="#dom-storage-clear">clear()</a></code> method, the event must have its <code title="dom-StorageEvent-key"><a href="#dom-storageevent-key">key</a></code>, <code title="dom-StorageEvent-oldValue"><a href="#dom-storageevent-oldvalue">oldValue</a></code>,
-  and <code title="dom-StorageEvent-newValue"><a href="#dom-storageevent-newvalue">newValue</a></code> attributes initialized to null.</p>
+  and <code title="dom-StorageEvent-newValue"><a href="#dom-storageevent-newvalue">newValue</a></code> attributes initialised to null.</p>
 
   <p>In addition, the event must have its <code title="dom-StorageEvent-url"><a href="#dom-storageevent-url">url</a></code> attribute
-  initialized to <span title="the document's address">the address of the document</span> whose
-  <code><a href="#storage-0">Storage</a></code> object was affected; and its <code title="dom-StorageEvent-storageArea"><a href="#dom-storageevent-storagearea">storageArea</a></code> attribute initialized to the
+  initialised to <span title="the document's address">the address of the document</span> whose
+  <code><a href="#storage-0">Storage</a></code> object was affected; and its <code title="dom-StorageEvent-storageArea"><a href="#dom-storageevent-storagearea">storageArea</a></code> attribute initialised to the
   <code><a href="#storage-0">Storage</a></code> object from the <code>Window</code> object of the target
   <code>Document</code> that represents the same kind of <code><a href="#storage-0">Storage</a></code> area as was affected
   (i.e. session or local).</p>
@@ -825,24 +825,24 @@
 };</pre>
 
   <p>The <dfn id="dom-storageevent-key" title="dom-StorageEvent-key"><code>key</code></dfn> attribute must return the value it
-  was initialized to. When the object is created, this attribute must be initialized to null. It
+  was initialised to. When the object is created, this attribute must be initialised to null. It
   represents the key being changed.</p>
 
   <p>The <dfn id="dom-storageevent-oldvalue" title="dom-StorageEvent-oldValue"><code>oldValue</code></dfn> attribute must return
-  the value it was initialized to. When the object is created, this attribute must be initialized to
+  the value it was initialised to. When the object is created, this attribute must be initialised to
   null. It represents the old value of the key being changed.</p>
 
   <p>The <dfn id="dom-storageevent-newvalue" title="dom-StorageEvent-newValue"><code>newValue</code></dfn> attribute must return
-  the value it was initialized to. When the object is created, this attribute must be initialized to
+  the value it was initialised to. When the object is created, this attribute must be initialised to
   null. It represents the new value of the key being changed.</p>
 
   <p>The <dfn id="dom-storageevent-url" title="dom-StorageEvent-url"><code>url</code></dfn> attribute must return the value it
-  was initialized to. When the object is created, this attribute must be initialized to the empty
+  was initialised to. When the object is created, this attribute must be initialised to the empty
   string. It represents the address of the document whose key changed.</p>
 
   <p>The <dfn id="dom-storageevent-storagearea" title="dom-StorageEvent-storageArea"><code>storageArea</code></dfn> attribute must
-  return the value it was initialized to. When the object is created, this attribute must be
-  initialized to null. It represents the <code><a href="#storage-0">Storage</a></code> object that was affected.</p>
+  return the value it was initialised to. When the object is created, this attribute must be
+  initialised to null. It represents the <code><a href="#storage-0">Storage</a></code> object that was affected.</p>
 
 
 
@@ -940,7 +940,7 @@
    <dt>Site-specific white-listing of access to local storage areas</dt> <dd>
 
     <p>User agents may allow sites to access session storage areas in
-    an unrestricted manner, but require the user to authorize access
+    an unrestricted manner, but require the user to authorise access
     to local storage areas.</p>
 
    </dd>

Received on Wednesday, 14 May 2014 23:22:11 UTC