diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLOptionElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLOptionElement.webidl | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/components/script/dom/webidls/HTMLOptionElement.webidl b/components/script/dom/webidls/HTMLOptionElement.webidl index 7b83e59c5f2..a4181466093 100644 --- a/components/script/dom/webidls/HTMLOptionElement.webidl +++ b/components/script/dom/webidls/HTMLOptionElement.webidl @@ -7,13 +7,18 @@ optional boolean defaultSelected = false, optional boolean selected = false)*/] interface HTMLOptionElement : HTMLElement { - attribute boolean disabled; - readonly attribute HTMLFormElement? form; - attribute DOMString label; - attribute boolean defaultSelected; - attribute boolean selected; - attribute DOMString value; + [CEReactions] + attribute boolean disabled; + readonly attribute HTMLFormElement? form; + [CEReactions] + attribute DOMString label; + [CEReactions] + attribute boolean defaultSelected; + attribute boolean selected; + [CEReactions] + attribute DOMString value; - attribute DOMString text; - //readonly attribute long index; + [CEReactions] + attribute DOMString text; + // readonly attribute long index; }; |