Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5485,16 +5485,15 @@ <h3>State</h3>
<li><p>Return a pair of (<var>x</var>, <var>y</var>).
</ol>

<p>To determine if <a>node</a> is <dfn>not in the same tree</dfn>
as another <a>node</a>, <var>other</var>,
<p>To determine if a {{Node}} <var>node</var> is <dfn>not in the same tree</dfn> as a {{Node}} <var>other</var>,
run the following substeps:

<ol>
<li><p>If the <a>node</a>&apos;s [=Node/node document=]
<li><p>If <var>node</var>&apos;s [=Node/node document=]
is not <var>other</var>&apos;s [=Node/node document=],
return true.

<li><p>Return true if the result of calling the <a>node</a>&apos;s
<li><p>Return true if the result of calling <var>node</var>&apos;s
{{Node/compareDocumentPosition()}} with <var>other</var> as argument
is {{Node/DOCUMENT_POSITION_DISCONNECTED}} (1),
otherwise return false.
Expand Down
Loading