Implement selectedIndex IDL attribute on HTMLOptionsCollection.

This commit is contained in:
Corey Farwell 2017-02-12 19:27:08 -05:00
parent a656782075
commit d4ad51bfde
5 changed files with 65 additions and 24 deletions

View file

@ -14,5 +14,5 @@ interface HTMLOptionsCollection : HTMLCollection {
void add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
//[CEReactions]
void remove(long index);
//attribute long selectedIndex;
attribute long selectedIndex;
};