Skip to content

Commit

Permalink
[e] (0) xref fixes for the merged spec
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2900 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 24, 2009
1 parent ef28a47 commit 8c26c79
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions source
Expand Up @@ -59165,7 +59165,7 @@ 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>Navigator</span> <span title="dom-navigator">navigator</span>;
readonly attribute <span title="worker-Navigator">Navigator</span> <span title="dom-worker-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);
};</pre>

Expand Down Expand Up @@ -59297,25 +59297,28 @@ interface <dfn>SharedWorker</dfn> : <span>AbstractWorker</span> {
</ol>


<h4>The <code>Navigator</code> object</h4>
<h4>The <code title="worker-Navigator">Navigator</code> object</h4>

<p>The <dfn title="dom-navigator"><code>navigator</code></dfn>
attribute of the <code>WorkerUtils</code> interface must return an
instance of the <code>Navigator</code> interface, which represents
the identity and state of the user agent (the client):</p>
<p>The <dfn
title="dom-worker-navigator"><code>navigator</code></dfn> attribute
of the <code>WorkerUtils</code> interface must return an instance of
the <code title="worker-Navigator">Navigator</code> interface, which
represents the identity and state of the user agent (the
client):</p>

<pre class="idl">interface <dfn>Navigator</dfn> {
<pre class="idl">interface <dfn title="worker-Navigator">Navigator</dfn> {
// objects implementing this interface also implement the interfaces listed below
};</pre>

<p>Objects implementing the <code>Navigator</code> interface must
also implement the <span>NavigatorID</span> and
<p>Objects implementing the <code
title="worker-Navigator">Navigator</code> interface must also
implement the <span>NavigatorID</span> and
<span>NavigatorOnLine</span> interfaces specified in the HTML5
specification. <a href="#refsHTML5">[HTML5]</a></p>

<p class="note">The <code>Navigator</code> interface defined in this
specification is different than the one defined in the HTML5
specification.</p>
<p class="note">The <code title="worker-Navigator">Navigator</code>
interface defined in this specification is different than the one
defined in the HTML5 specification.</p>


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

0 comments on commit 8c26c79

Please sign in to comment.