Skip to content

Commit

Permalink
[] (0) Remove localStorage from Workers for now.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2895 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 23, 2009
1 parent 0c070e3 commit 56b5ab5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions source
Expand Up @@ -59336,7 +59336,6 @@ interface <dfn>SharedWorker</dfn> : <span>AbstractWorker</span> {
<!-- the XXX below is for collapsing this interface onto WorkerGlobalScope so it looks like just one interface - the inheritance is a spec fiction only -->
<pre class="idl">[NoInterfaceObject, ImplementedOn=WorkerGlobalScope, XXX] interface <dfn>WorkerUtils</dfn> {
void <span title="dom-WorkerGlobalScope-importScripts">importScripts</span>([Variadic] in DOMString urls);
readonly attribute <span>Storage</span> <span title="dom-localStorage">localStorage</span>;
readonly attribute <span>Navigator</span> <span title="dom-navigator">navigator</span>;
<span>Database</span> <span title="dom-opendatabase">openDatabase</span>(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize);<!--
void <span title="dom-showNotification">showNotification</span>(in DOMString title, in DOMString subtitle, in DOMString description, [Optional] in VoidCallback onclick); XXX-NOTIFY -->
Expand Down Expand Up @@ -59493,9 +59492,9 @@ interface <dfn>SharedWorker</dfn> : <span>AbstractWorker</span> {

<h4>APIs defined in other specifications</h4>

<p>The <dfn title="dom-localStorage"><code>localStorage</code></dfn>,
<dfn title="dom-opendatabase"><code>openDatabase()</code></dfn> must
act as defined for the APIs with the same names on the
<p>The <dfn
title="dom-opendatabase"><code>openDatabase()</code></dfn> method
must act as defined for the API with the same name on the
<code>Window</code> object in the HTML5 specification, with the
exception that where the API would use the <span>origin</span> of
the <span>active document</span> of the <span>browsing
Expand All @@ -59504,11 +59503,13 @@ interface <dfn>SharedWorker</dfn> : <span>AbstractWorker</span> {
of the script that invoked the method. <a
href="#refsHTML5">[HTML5]</a></p>

<!--XXX-NOTIFY
<p>The <dfn
title="dom-showNotification"><code>showNotification()</code></dfn>
methods must act as defined for the APIs with the same names on the
<code>Window</code> object in the HTML5 specification. <a
href="#refsHTML5">[HTML5]</a></p>
-->


<h4>Interface objects and constructors</h4>
Expand Down

0 comments on commit 56b5ab5

Please sign in to comment.