[html5] r4157 - [w] (1) Drop StorageEvent.source.

whatwg at whatwg.org whatwg at whatwg.org
Sat Oct 17 20:17:27 PDT 2009


Author: ianh
Date: 2009-10-17 20:17:25 -0700 (Sat, 17 Oct 2009)
New Revision: 4157

Modified:
   complete.html
   source
Log:
[w] (1) Drop StorageEvent.source.

Modified: complete.html
===================================================================
--- complete.html	2009-10-17 10:02:59 UTC (rev 4156)
+++ complete.html	2009-10-18 03:17:25 UTC (rev 4157)
@@ -110,7 +110,7 @@
 
   <header class=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
    <hgroup><h1>Web Applications 1.0</h1>
-    <h2 class="no-num no-toc">Draft Standard — 17 October 2009</h2>
+    <h2 class="no-num no-toc">Draft Standard — 18 October 2009</h2>
    </hgroup><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>
    <!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -57718,11 +57718,7 @@
   null.</p>
 
   <p>In addition, the event must have its <code title=dom-StorageEvent-url><a href=#dom-storageevent-url>url</a></code> attribute set to <a href="#the-document's-address" title="the document's address">the address of the document</a>
-  whose <code><a href=#storage-0>Storage</a></code> object was affected; its <code title=dom-StorageEvent-source><a href=#dom-storageevent-source>source</a></code> attribute set to the
-  that document's <a href=#browsing-context>browsing context</a>'s
-  <code><a href=#windowproxy>WindowProxy</a></code> object, if the two documents are in the
-  same <a href=#unit-of-related-browsing-contexts>unit of related browsing contexts</a>, or null
-  otherwise; and its <code title=dom-StorageEvent-storageArea><a href=#dom-storageevent-storagearea>storageArea</a></code> attribute
+  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
   set to the <code><a href=#storage-0>Storage</a></code> object from the <code><a href=#window>Window</a></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
@@ -57736,10 +57732,9 @@
   readonly attribute any <a href=#dom-storageevent-oldvalue title=dom-StorageEvent-oldValue>oldValue</a>;
   readonly attribute any <a href=#dom-storageevent-newvalue title=dom-StorageEvent-newValue>newValue</a>;
   readonly attribute DOMString <a href=#dom-storageevent-url title=dom-StorageEvent-url>url</a>;
-  readonly attribute <a href=#windowproxy>WindowProxy</a> <a href=#dom-storageevent-source title=dom-StorageEvent-source>source</a>;
   readonly attribute <a href=#storage-0>Storage</a> <a href=#dom-storageevent-storagearea title=dom-StorageEvent-storageArea>storageArea</a>;
-  void <a href=#dom-storageevent-initstorageevent title=dom-StorageEvent-initStorageEvent>initStorageEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <a href=#storage-0>Storage</a> storageAreaArg);
-  void <a href=#dom-storageevent-initstorageeventns title=dom-StorageEvent-initStorageEventNS>initStorageEventNS</a>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <a href=#windowproxy>WindowProxy</a> sourceArg, in <a href=#storage-0>Storage</a> storageAreaArg);
+  void <a href=#dom-storageevent-initstorageevent title=dom-StorageEvent-initStorageEvent>initStorageEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <a href=#storage-0>Storage</a> storageAreaArg);
+  void <a href=#dom-storageevent-initstorageeventns title=dom-StorageEvent-initStorageEventNS>initStorageEventNS</a>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <a href=#storage-0>Storage</a> storageAreaArg);
 };</pre>
 
   <p>The <dfn id=dom-storageevent-initstorageevent title=dom-StorageEvent-initStorageEvent><code>initStorageEvent()</code></dfn>
@@ -57760,10 +57755,6 @@
   attribute represents the address of the document whose key
   changed.</p>
 
-  <p>The <dfn id=dom-storageevent-source title=dom-StorageEvent-source><code>source</code></dfn> attribute
-  represents the <code><a href=#windowproxy>WindowProxy</a></code> object of the <a href=#browsing-context>browsing
-  context</a> of the document whose key changed.</p>
-
   <p>The <dfn id=dom-storageevent-storagearea title=dom-StorageEvent-storageArea><code>storageArea</code></dfn>
   attribute represents the <code><a href=#storage-0>Storage</a></code> object that was
   affected.</p>

Modified: source
===================================================================
--- source	2009-10-17 10:02:59 UTC (rev 4156)
+++ source	2009-10-18 03:17:25 UTC (rev 4157)
@@ -65186,12 +65186,7 @@
   <p>In addition, the event must have its <code
   title="dom-StorageEvent-url">url</code> attribute set to <span
   title="the document's address">the address of the document</span>
-  whose <code>Storage</code> object was affected; its <code
-  title="dom-StorageEvent-source">source</code> attribute set to the
-  that document's <span>browsing context</span>'s
-  <code>WindowProxy</code> object, if the two documents are in the
-  same <span>unit of related browsing contexts</span>, or null
-  otherwise; and its <code
+  whose <code>Storage</code> object was affected; and its <code
   title="dom-StorageEvent-storageArea">storageArea</code> attribute
   set to the <code>Storage</code> object from the <code>Window</code>
   object of the target <code>Document</code> that represents the same
@@ -65206,10 +65201,9 @@
   readonly attribute any <span title="dom-StorageEvent-oldValue">oldValue</span>;
   readonly attribute any <span title="dom-StorageEvent-newValue">newValue</span>;
   readonly attribute DOMString <span title="dom-StorageEvent-url">url</span>;
-  readonly attribute <span>WindowProxy</span> <span title="dom-StorageEvent-source">source</span>;
   readonly attribute <span>Storage</span> <span title="dom-StorageEvent-storageArea">storageArea</span>;
-  void <span title="dom-StorageEvent-initStorageEvent">initStorageEvent</span>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <span>WindowProxy</span> sourceArg, in <span>Storage</span> storageAreaArg);
-  void <span title="dom-StorageEvent-initStorageEventNS">initStorageEventNS</span>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <span>WindowProxy</span> sourceArg, in <span>Storage</span> storageAreaArg);
+  void <span title="dom-StorageEvent-initStorageEvent">initStorageEvent</span>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <span>Storage</span> storageAreaArg);
+  void <span title="dom-StorageEvent-initStorageEventNS">initStorageEventNS</span>(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in any oldValueArg, in any newValueArg, in DOMString urlArg, in <span>Storage</span> storageAreaArg);
 };</pre>
 
   <p>The <dfn
@@ -65236,11 +65230,6 @@
   changed.</p>
 
   <p>The <dfn
-  title="dom-StorageEvent-source"><code>source</code></dfn> attribute
-  represents the <code>WindowProxy</code> object of the <span>browsing
-  context</span> of the document whose key changed.</p>
-
-  <p>The <dfn
   title="dom-StorageEvent-storageArea"><code>storageArea</code></dfn>
   attribute represents the <code>Storage</code> object that was
   affected.</p>




More information about the Commit-Watchers mailing list