Skip to content

Commit

Permalink
[w] (1) Drop StorageEvent.source.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@4157 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 18, 2009
1 parent 7983b29 commit 98d4100
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 27 deletions.
17 changes: 4 additions & 13 deletions complete.html
Expand Up @@ -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 &mdash; 17 October 2009</h2>
<h2 class="no-num no-toc">Draft Standard &mdash; 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>-->
Expand Down Expand Up @@ -57718,11 +57718,7 @@ <h5 id=the-storage-event><span class=secno>7.1.2.4 </span>The <code title=event-
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
Expand All @@ -57736,10 +57732,9 @@ <h6 id=event-definition-0><span class=secno>7.1.2.4.1 </span>Event definition</h
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>
Expand All @@ -57760,10 +57755,6 @@ <h6 id=event-definition-0><span class=secno>7.1.2.4.1 </span>Event definition</h
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>
Expand Down
17 changes: 3 additions & 14 deletions source
Expand Up @@ -65186,12 +65186,7 @@ interface <span>WindowLocalStorage</span> {
<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
Expand All @@ -65206,10 +65201,9 @@ interface <span>WindowLocalStorage</span> {
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
Expand All @@ -65235,11 +65229,6 @@ interface <span>WindowLocalStorage</span> {
attribute represents the address of the document whose key
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
Expand Down

0 comments on commit 98d4100

Please sign in to comment.