aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLOptionsCollection.webidl
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-12 19:27:08 -0500
committerCorey Farwell <coreyf@rwell.org>2017-02-12 23:48:52 -0500
commitd4ad51bfde796caf2f674b653a2717caaf6ecac2 (patch)
treee0cac7d94e46c0b466cc480beb4fa2e8fe811b06 /components/script/dom/webidls/HTMLOptionsCollection.webidl
parenta656782075afb1fbc55e3f0f8bdb5a58010f3af3 (diff)
downloadservo-d4ad51bfde796caf2f674b653a2717caaf6ecac2.tar.gz
servo-d4ad51bfde796caf2f674b653a2717caaf6ecac2.zip
Implement `selectedIndex` IDL attribute on `HTMLOptionsCollection`.
Diffstat (limited to 'components/script/dom/webidls/HTMLOptionsCollection.webidl')
-rw-r--r--components/script/dom/webidls/HTMLOptionsCollection.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLOptionsCollection.webidl b/components/script/dom/webidls/HTMLOptionsCollection.webidl
index bb6fce7dc20..73b11779159 100644
--- a/components/script/dom/webidls/HTMLOptionsCollection.webidl
+++ b/components/script/dom/webidls/HTMLOptionsCollection.webidl
@@ -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;
};