aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLOptionElement.webidl
diff options
context:
space:
mode:
authorGuillaume Bort <guillaume.bort@gmail.com>2014-11-07 21:02:12 +0100
committerGuillaume Bort <guillaume.bort@gmail.com>2014-11-12 17:02:47 +0100
commit09766511b5be92d64baca0bb7824455f8ae6befa (patch)
tree87601475d0d883db4514a5c97dac66fa011258d3 /components/script/dom/webidls/HTMLOptionElement.webidl
parentbb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130 (diff)
downloadservo-09766511b5be92d64baca0bb7824455f8ae6befa.tar.gz
servo-09766511b5be92d64baca0bb7824455f8ae6befa.zip
Fix #3933
Diffstat (limited to 'components/script/dom/webidls/HTMLOptionElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLOptionElement.webidl6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/webidls/HTMLOptionElement.webidl b/components/script/dom/webidls/HTMLOptionElement.webidl
index 5c3f4b37f6a..9126e24d790 100644
--- a/components/script/dom/webidls/HTMLOptionElement.webidl
+++ b/components/script/dom/webidls/HTMLOptionElement.webidl
@@ -6,12 +6,12 @@
// http://www.whatwg.org/html/#htmloptionelement
//[NamedConstructor=Option(optional DOMString text = "", optional DOMString value, optional boolean defaultSelected = false, optional boolean selected = false)]
interface HTMLOptionElement : HTMLElement {
- attribute boolean disabled;
+ attribute boolean disabled;
//readonly attribute HTMLFormElement? form;
- // attribute DOMString label;
+ attribute DOMString label;
// attribute boolean defaultSelected;
// attribute boolean selected;
- // attribute DOMString value;
+ attribute DOMString value;
attribute DOMString text;
//readonly attribute long index;