| Index: third_party/WebKit/Source/core/html/HTMLDialogElement.idl
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLDialogElement.idl b/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
|
| index b6d871128754bcfc19a0243030ed6b58c73e951a..e6704616f29c3164b46f5a32d31e02d4969993a7 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
|
| +++ b/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
|
| @@ -26,11 +26,11 @@
|
| // https://html.spec.whatwg.org/#the-dialog-element
|
|
|
| interface HTMLDialogElement : HTMLElement {
|
| - [Reflect] attribute boolean open;
|
| + [CEReactions, Reflect] attribute boolean open;
|
| attribute DOMString returnValue;
|
| // FIXME: show() and showModal() should take an anchor argument.
|
| - void show();
|
| - [RaisesException] void showModal();
|
| + [CEReactions] void show();
|
| + [CEReactions, RaisesException] void showModal();
|
| // FIXME: The returnValue argument should have no default value.
|
| - [RaisesException] void close(optional DOMString returnValue = null);
|
| + [CEReactions, RaisesException] void close(optional DOMString returnValue = null);
|
| };
|
|
|