Skip to content

Commit

Permalink
Make textarea.selectionStart/End/Direction non-nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip authored and Alice Boxhall committed Jan 7, 2019
1 parent d4b4810 commit c03280f
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 @@ -49462,9 +49462,9 @@ interface <dfn>HTMLTextAreaElement</dfn> : <span>HTMLElement</span> {
[SameObject] readonly attribute <span>NodeList</span> <span data-x="dom-lfe-labels">labels</span>;

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>;
attribute unsigned long <span data-x="dom-textarea/input-selectionEnd">selectionEnd</span>;
attribute DOMString <span data-x="dom-textarea/input-selectionDirection">selectionDirection</span>;
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);
Expand Down

0 comments on commit c03280f

Please sign in to comment.