Index: core/html/HTMLOptionElement.idl |
diff --git a/core/html/HTMLOptionElement.idl b/core/html/HTMLOptionElement.idl |
index d315551886c60e3ed9ee956561e28b019cbb11ef..41c6592f2396ad2bb2a7c1ce5d66890a6f9ba049 100644 |
--- a/core/html/HTMLOptionElement.idl |
+++ b/core/html/HTMLOptionElement.idl |
@@ -20,7 +20,7 @@ |
[ |
NamedConstructor=Option([Default=NullString] optional DOMString data, [Default=NullString] optional DOMString value, [Default=Undefined] optional boolean defaultSelected, [Default=Undefined] optional boolean selected), |
- ConstructorRaisesException |
+ RaisesException=Constructor |
] interface HTMLOptionElement : HTMLElement { |
[Reflect] attribute boolean disabled; |
readonly attribute HTMLFormElement form; |
@@ -29,6 +29,6 @@ |
attribute boolean selected; |
attribute DOMString value; |
- [SetterRaisesException] attribute DOMString text; |
+ [RaisesException=Setter] attribute DOMString text; |
readonly attribute long index; |
}; |