Skip to content

Commit

Permalink
Some variables are unique snowflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Oct 15, 2015
1 parent 4c44562 commit c09e1b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ No Editor: true
Logo: https://resources.whatwg.org/logo-dom.svg
Abstract: DOM defines a platform-neutral model for events and node trees.
Ignored Terms: EmptyString, Array, Elements, Document
Ignored Vars: p, documentFragment, ev, oldParent, em, processingInstruction, obj, tree, removedNode, C, *, intersects, collapsed
Boilerplate: omit conformance, omit feedback-header
</pre>

Expand Down Expand Up @@ -8182,15 +8183,15 @@ To <dfn export id=concept-NodeIterator-traverse for="NodeIterator">traverse</dfn
<ol>
<li>
<dl class=switch>
<dt>If direction is next
<dt>If <var>direction</var> is next
<dd>
If <var>before node</var> is false, let <var>node</var>
be the first <a>node</a>
<a>following</a>
<var>node</var> in the <span>iterator collection</span>. If
there is no such <a>node</a> return null.
If <var>before node</var> is true, set it to false.
<dt>If direction is previous
<dt>If <var>direction</var> is previous
<dd>
If <var>before node</var> is true, let <var>node</var>
be the first <a>node</a>
Expand Down
4 changes: 2 additions & 2 deletions dom.html
Original file line number Diff line number Diff line change
Expand Up @@ -3784,11 +3784,11 @@ <h3 class="heading settled" data-level="6.1" id="interface-nodeiterator"><span c
<ol>
<li>
<dl class="switch">
<dt>If direction is next
<dt>If <var>direction</var> is next
<dd> If <var>before node</var> is false, let <var>node</var> be the first <a data-link-type="dfn" href="#concept-node">node</a> <a data-link-type="dfn" href="#concept-tree-following">following</a> <var>node</var> in the <span>iterator collection</span>. If
there is no such <a data-link-type="dfn" href="#concept-node">node</a> return null.
If <var>before node</var> is true, set it to false.
<dt>If direction is previous
<dt>If <var>direction</var> is previous
<dd> If <var>before node</var> is true, let <var>node</var> be the first <a data-link-type="dfn" href="#concept-node">node</a> <a data-link-type="dfn" href="#concept-tree-preceding">preceding</a> <var>node</var> in the <span>iterator collection</span>. If
there is no such <a data-link-type="dfn" href="#concept-node">node</a> return null.
If <var>before node</var> is false, set it to true.
Expand Down

0 comments on commit c09e1b4

Please sign in to comment.