| Index: third_party/WebKit/Source/core/html/HTMLOptionElement.idl
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
|
| index 263ac8b53911e96bde579586484c6562d5d1c077..d3325f8fa23720c8d0c0ba559c9f7d96b5f154ee 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLOptionElement.idl
|
| @@ -28,14 +28,14 @@
|
| ConstructorCallWith=Document,
|
| RaisesException=Constructor
|
| ] interface HTMLOptionElement : HTMLElement {
|
| - [Reflect] attribute boolean disabled;
|
| + [CEReactions, Reflect] attribute boolean disabled;
|
| readonly attribute HTMLFormElement? form;
|
| - attribute DOMString label;
|
| - [Reflect=selected] attribute boolean defaultSelected;
|
| + [CEReactions] attribute DOMString label;
|
| + [CEReactions, Reflect=selected] attribute boolean defaultSelected;
|
| [ImplementedAs=selectedForBinding] attribute boolean selected;
|
| - attribute DOMString value;
|
| + [CEReactions] attribute DOMString value;
|
|
|
| // TODO(foolip): The text setter should never throw.
|
| - [RaisesException=Setter] attribute DOMString text;
|
| + [CEReactions, RaisesException=Setter] attribute DOMString text;
|
| readonly attribute long index;
|
| };
|
|
|