Skip to content

Commit

Permalink
Remove 'is active' checks from EditContext setters (#77)
Browse files Browse the repository at this point in the history
Per [WG resolution](#26 (comment)), remove "is active" checks from `updateText()`, `updateSelection()`, `updateSelectionBounds()`, `updateControlBounds()`, and `updateCharacterBounds()`.

Closes #26
  • Loading branch information
dandclark authored Oct 16, 2023
1 parent 4d14ee6 commit b9259a2
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -997,9 +997,6 @@ <h3 id="editcontext-interface">EditContext Interface</h3>
<dd>None</dd>
</dl>
<ol>
<li>
If [=this=] is not activated, abort these steps.
</li>
<li>
Replace the substring of [=text=] in the range of |rangeStart| and |rangeEnd| with |newText|
</li>
Expand All @@ -1023,9 +1020,6 @@ <h3 id="editcontext-interface">EditContext Interface</h3>
<dd>None</dd>
</dl>
<ol>
<li>
If [=this=] is not activated, abort these steps.
</li>
<li>
If |start| > |end|, abort these steps.
</li>
Expand All @@ -1051,9 +1045,6 @@ <h3 id="editcontext-interface">EditContext Interface</h3>
<dd>None</dd>
</dl>
<ol>
<li>
If [=this=] is not activated, abort these steps.
</li>
<li>
set [=selection bounds=] to |selectionBounds|
</li>
Expand All @@ -1073,9 +1064,6 @@ <h3 id="editcontext-interface">EditContext Interface</h3>
<dd>None</dd>
</dl>
<ol>
<li>
If [=this=] is not activated, abort these steps.
</li>
<li>
set [=control bounds=] to |controlBounds|
</li>
Expand All @@ -1096,9 +1084,6 @@ <h3 id="editcontext-interface">EditContext Interface</h3>
<dd>None</dd>
</dl>
<ol>
<li>
If [=this=] is not activated, abort these steps.
</li>
<li>
set [=start index=] to |rangeStart|.
</li>
Expand Down

0 comments on commit b9259a2

Please sign in to comment.