Skip to content

Commit

Permalink
Editorial: annotate shared input/textarea IDL extract
Browse files Browse the repository at this point in the history
Closes #2175 again.
  • Loading branch information
foolip committed Jan 4, 2017
1 parent 6e055a8 commit 5873057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -53693,9 +53693,9 @@ MIT Room 32-G524
DOM interfaces for handling their selection:</p>

<pre class="idl extract"> void <span data-x="dom-textarea/input-select">select</span>();
attribute unsigned long? <span data-x="dom-textarea/input-selectionStart">selectionStart</span>;
attribute unsigned long? <span data-x="dom-textarea/input-selectionEnd">selectionEnd</span>;
attribute DOMString? <span data-x="dom-textarea/input-selectionDirection">selectionDirection</span>;
attribute unsigned long? <span data-x="dom-textarea/input-selectionStart">selectionStart</span>; // nullable only for input
attribute unsigned long? <span data-x="dom-textarea/input-selectionEnd">selectionEnd</span>; // nullable only for input
attribute DOMString? <span data-x="dom-textarea/input-selectionDirection">selectionDirection</span>; // nullable only for input
void <span data-x="dom-textarea/input-setRangeText">setRangeText</span>(DOMString replacement);
void <span data-x="dom-textarea/input-setRangeText">setRangeText</span>(DOMString replacement, unsigned long start, unsigned long end, optional <span>SelectionMode</span> selectionMode = "preserve");
void <span data-x="dom-textarea/input-setSelectionRange">setSelectionRange</span>(unsigned long start, unsigned long end, optional DOMString direction = "preserve");</pre>
Expand Down

0 comments on commit 5873057

Please sign in to comment.