Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Oct 28, 2013
1 parent 5a24697 commit 0999d4d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 22 deletions.
29 changes: 19 additions & 10 deletions Overview.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -4156,6 +4156,7 @@ <h3>Interface <code>Document</code></h3>
[SameObject] readonly attribute <span>DOMImplementation</span> <span title=dom-Document-implementation>implementation</span>;
readonly attribute DOMString <span title=dom-Document-URL>URL</span>;
readonly attribute DOMString <span title=dom-Document-documentURI>documentURI</span>;
readonly attribute DOMString <span title=dom-Document-origin>origin</span>;
readonly attribute DOMString <span title=dom-Document-compatMode>compatMode</span>;
readonly attribute DOMString <span title=dom-Document-characterSet>characterSet</span>;
readonly attribute DOMString <span title=dom-Document-contentType>contentType</span>;
Expand Down Expand Up @@ -4259,14 +4260,17 @@ <h3>Interface <code>Document</code></h3>
<dt><code><var title>document</var> = new <span title=dom-Document>Document</span>()</code>
<dd><p>Returns a new <span title=concept-document>document</span>.

<dt><var title>document</var> . <code title=dom-Document-implementation>implementation</code>
<dd><p>Returns the associated <code>DOMImplementation</code> object.
<dt><code><var title>document</var> . <span title=dom-Document-implementation>implementation</span></code>
<dd><p>Returns <var title>document</var>'s <code>DOMImplementation</code> object.

<dt><var title>document</var> . <code title=dom-Document-URL>URL</code>
<dt><var title>document</var> . <code title=dom-Document-documentURI>documentURI</code>
<dd><p>Returns the <span title=concept-document-url>URL</span>.
<dt><code><var title>document</var> . <span title=dom-Document-URL>URL</span></code>
<dt><code><var title>document</var> . <span title=dom-Document-documentURI>documentURI</span></code>
<dd><p>Returns <var title>document</var>'s <span title=concept-document-url>URL</span>.

<dt><var title>document</var> . <code title=dom-Document-compatMode>compatMode</code>
<dt><code><var title>document</var> . <span title=dom-Document-origin>origin</span></code>
<dd><p>Returns <var title>document</var>'s <span data-anolis-spec=html>origin</span>.

<dt><code><var title>document</var> . <span title=dom-Document-compatMode>compatMode</span></code>
<dd>
<p>Returns the string "<code title>CSS1Compat</code>" if
<var title>document</var> is in
Expand All @@ -4275,11 +4279,12 @@ <h3>Interface <code>Document</code></h3>
"<code title>BackCompat</code>", if <var title>document</var> is in
<span title=concept-document-quirks>quirks mode</span>.

<dt><var title>document</var> . <code title=dom-Document-characterSet>characterSet</code>
<dd><p>Returns the <span title=concept-document-encoding>encoding</span>.
<dt><code><var title>document</var> . <span title=dom-Document-characterSet>characterSet</span></code>
<dd><p>Returns <var title>document</var>'s
<span title=concept-document-encoding>encoding</span>.

<dt><var title>document</var> . <code title=dom-Document-contentType>contentType</code>
<dd><p>Returns the
<dt><code><var title>document</var> . <span title=dom-Document-contentType>contentType</span></code>
<dd><p>Returns <var title>document</var>'s
<span title=concept-document-content-type>content type</span>.
</dl>

Expand Down Expand Up @@ -4309,6 +4314,10 @@ <h3>Interface <code>Document</code></h3>
<dfn title=dom-Document-documentURI><code>documentURI</code></dfn>
attributes must return the <span title=concept-document-url>URL</span>.

<p>The <dfn title=dom-Document-origin><code>origin</code></dfn>
attribute must return <span>context object</span>'s
<span data-anolis-spec=html>origin</span>.

<p>The <dfn title=dom-Document-compatMode><code>compatMode</code></dfn>
attribute must return "<code title>BackCompat</code>" if the
<span>context object</span> is in
Expand Down
33 changes: 21 additions & 12 deletions dom-core.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<p><a class="logo" href="//www.whatwg.org/"><img alt="WHATWG" height="100" src="//resources.whatwg.org/logo-dom.svg" width="100"></a></p>

<h1>DOM</h1>
<h2 class="no-num no-toc" id="living-standard-—-last-updated-24-october-2013">Living Standard — Last Updated 24 October 2013</h2>
<h2 class="no-num no-toc" id="living-standard-—-last-updated-28-october-2013">Living Standard — Last Updated 28 October 2013</h2>

<dl>
<dt>This Version:
Expand Down Expand Up @@ -45,7 +45,7 @@ <h2 class="no-num no-toc" id="living-standard-—-last-updated-24-october-2013">
<p class="copyright"><a href="http://creativecommons.org/publicdomain/zero/1.0/" rel="license"><img alt="CC0" src="http://i.creativecommons.org/p/zero/1.0/80x15.png"></a>
To the extent possible under law, the editors have waived all copyright and
related or neighboring rights to this work. In addition, as of
24 October 2013, the editors have made this specification available
28 October 2013, the editors have made this specification available
under the
<a href="http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0" rel="license">Open Web Foundation Agreement Version 1.0</a>,
which is available at
Expand Down Expand Up @@ -4229,6 +4229,7 @@ <h3 id="interface-document"><span class="secno">6.5 </span>Interface <code><a hr
[SameObject] readonly attribute <a href="#domimplementation">DOMImplementation</a> <a href="#dom-document-implementation" title="dom-Document-implementation">implementation</a>;
readonly attribute DOMString <a href="#dom-document-url" title="dom-Document-URL">URL</a>;
readonly attribute DOMString <a href="#dom-document-documenturi" title="dom-Document-documentURI">documentURI</a>;
readonly attribute DOMString <a href="#dom-document-origin" title="dom-Document-origin">origin</a>;
readonly attribute DOMString <a href="#dom-document-compatmode" title="dom-Document-compatMode">compatMode</a>;
readonly attribute DOMString <a href="#dom-document-characterset" title="dom-Document-characterSet">characterSet</a>;
readonly attribute DOMString <a href="#dom-document-contenttype" title="dom-Document-contentType">contentType</a>;
Expand Down Expand Up @@ -4332,14 +4333,17 @@ <h3 id="interface-document"><span class="secno">6.5 </span>Interface <code><a hr
<dt><code><var title="">document</var> = new <a href="#dom-document" title="dom-Document">Document</a>()</code>
<dd><p>Returns a new <a href="#concept-document" title="concept-document">document</a>.

<dt><var title="">document</var> . <code title="dom-Document-implementation"><a href="#dom-document-implementation">implementation</a></code>
<dd><p>Returns the associated <code><a href="#domimplementation">DOMImplementation</a></code> object.
<dt><code><var title="">document</var> . <a href="#dom-document-implementation" title="dom-Document-implementation">implementation</a></code>
<dd><p>Returns <var title="">document</var>'s <code><a href="#domimplementation">DOMImplementation</a></code> object.

<dt><var title="">document</var> . <code title="dom-Document-URL"><a href="#dom-document-url">URL</a></code>
<dt><var title="">document</var> . <code title="dom-Document-documentURI"><a href="#dom-document-documenturi">documentURI</a></code>
<dd><p>Returns the <a href="#concept-document-url" title="concept-document-url">URL</a>.
<dt><code><var title="">document</var> . <a href="#dom-document-url" title="dom-Document-URL">URL</a></code>
<dt><code><var title="">document</var> . <a href="#dom-document-documenturi" title="dom-Document-documentURI">documentURI</a></code>
<dd><p>Returns <var title="">document</var>'s <a href="#concept-document-url" title="concept-document-url">URL</a>.

<dt><var title="">document</var> . <code title="dom-Document-compatMode"><a href="#dom-document-compatmode">compatMode</a></code>
<dt><code><var title="">document</var> . <a href="#dom-document-origin" title="dom-Document-origin">origin</a></code>
<dd><p>Returns <var title="">document</var>'s <a class="external" data-anolis-spec="html" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/origin-0.html#origin">origin</a>.

<dt><code><var title="">document</var> . <a href="#dom-document-compatmode" title="dom-Document-compatMode">compatMode</a></code>
<dd>
<p>Returns the string "<code title="">CSS1Compat</code>" if
<var title="">document</var> is in
Expand All @@ -4348,11 +4352,12 @@ <h3 id="interface-document"><span class="secno">6.5 </span>Interface <code><a hr
"<code title="">BackCompat</code>", if <var title="">document</var> is in
<a href="#concept-document-quirks" title="concept-document-quirks">quirks mode</a>.

<dt><var title="">document</var> . <code title="dom-Document-characterSet"><a href="#dom-document-characterset">characterSet</a></code>
<dd><p>Returns the <a href="#concept-document-encoding" title="concept-document-encoding">encoding</a>.
<dt><code><var title="">document</var> . <a href="#dom-document-characterset" title="dom-Document-characterSet">characterSet</a></code>
<dd><p>Returns <var title="">document</var>'s
<a href="#concept-document-encoding" title="concept-document-encoding">encoding</a>.

<dt><var title="">document</var> . <code title="dom-Document-contentType"><a href="#dom-document-contenttype">contentType</a></code>
<dd><p>Returns the
<dt><code><var title="">document</var> . <a href="#dom-document-contenttype" title="dom-Document-contentType">contentType</a></code>
<dd><p>Returns <var title="">document</var>'s
<a href="#concept-document-content-type" title="concept-document-content-type">content type</a>.
</dl>

Expand Down Expand Up @@ -4382,6 +4387,10 @@ <h3 id="interface-document"><span class="secno">6.5 </span>Interface <code><a hr
<dfn id="dom-document-documenturi" title="dom-Document-documentURI"><code>documentURI</code></dfn>
attributes must return the <a href="#concept-document-url" title="concept-document-url">URL</a>.

<p>The <dfn id="dom-document-origin" title="dom-Document-origin"><code>origin</code></dfn>
attribute must return <a href="#context-object">context object</a>'s
<a class="external" data-anolis-spec="html" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/origin-0.html#origin">origin</a>.

<p>The <dfn id="dom-document-compatmode" title="dom-Document-compatMode"><code>compatMode</code></dfn>
attribute must return "<code title="">BackCompat</code>" if the
<a href="#context-object">context object</a> is in
Expand Down

0 comments on commit 0999d4d

Please sign in to comment.